window.addEvent('domready', function(){
	var flash_div = 'header';
	var flash_version = 9;
	if($(flash_div)){
		$(flash_div).set('html', '<a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" title="Get the latest flash player"><img src="images/INF_noFlash.jpg" title="Get the latest flash player" alt="Get the latest flash player" /></a>');
 		if(Browser.Plugins.Flash.version >= flash_version){	 
			var PageUrl = window.location.href;
			PageUrl = PageUrl.split("#");
			PageUrl = PageUrl[0].split("?");
			var b = PageUrl[0].match(/[\/|\\]([^\\\/]+)$/);
			if(b == null)
				var ThisPage = 'index.php';
			else
				var ThisPage = b[1];
			if(ThisPage == ''){
				ThisPage = 'index.php';
			}
			var obj = new Swiff('preStub.swf', {
					id: 'Infogenesis Header',
					width: 960,
					height: 320,
					container: flash_div,
				params: {
					bgcolor: '#ffffff'
				},
				vars: {
					page:ThisPage,
					int_industry_id:int_industry_id,
					int_product_id:int_product_id
				},
				events: {
					onLoad: function() {}
				}
			});
		  }else{
			  $(flash_div).set('html', '<a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" title="Get the latest flash player"><img src="images/INF_noFlash.jpg" title="Get the latest flash player" alt="Get the latest flash player" /></a>');
		  }
	}else{}
});  