window.addEvent('domready', function(){
	var flash_version = 9;
	var flash_div = 'header';
	if($(flash_div)){
		if(Browser.Plugins.Flash.version >= flash_version){	 
			var PageUrl = window.location.href;
			PageUrl = PageUrl.split("#");
			var b = PageUrl[0].match(/[\/|\\]([^\\\/]+)$/);
			var check_complex_url = b[1].split("?");
			if(check_complex_url[0] == 'whats_new.php' || check_complex_url[0] == 'where_to_buy.php'){
				b[1] = check_complex_url[0];
			}
			if($('header')){
				var obj = new Swiff('stuble.swf', {
						id: 'Youngblood Header',
						width: 960,
						height: 325,
						container: flash_div,
						params: {
						bgcolor: '#000000'
					},
					vars: {
						page:b[1]
					},
					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/YB_noFlash.jpg" title="Get the latest flash player" alt="Get the latest flash player" /></a>');
		}
	}else{}
});  