var imageURL = rootURL + 'media/images/';

window.onload = function() {
		
	var flashTag = new FlashTag();
	
	flashTag.version = 8;
	
	flashTag.src = rootURL +'media/flash/preloader.swf';
	flashTag.width = 990;
	flashTag.height = 590;
	flashTag.bgcolor = '#5A9D2C';
	
	flashTag.vars.rootURL = rootURL;
	flashTag.vars.sideBackgroundURL = imageURL+"bg/top_left_repeat.jpg,"+imageURL+"bg/top_left.jpg,"+imageURL+"bg/top_center.jpg,"+imageURL+"bg/top_right.jpg,"+imageURL+"bg/left_repeat.jpg,"+imageURL+"bg/left.jpg,"+imageURL+"bg/right_repeat.jpg,"+imageURL+"bg/right.jpg,"+imageURL+"bg/bottom_left.jpg,"+imageURL+"bg/bottom_center.jpg,"+imageURL+"bg/bottom_right.jpg";
	flashTag.vars.mainBackgroundURL = imageURL+"bg/background.jpg";		
	
				
	flashTag.noPlayerHtml = flashTag.noPlayerVersionHtml = '<div id="flashNoPlayerDiv"><img id="mapImage" name="mapImage" usemap="#imageMap" src="'+imageURL+'btn/no_flash.gif" style="width:279px;height:59px;" alt=""/></div>';
	flashTag.writeToElement( 'flashDiv' );		
}

function showBackgroundImages( ) {	
	window.setTimeout( 'safariHack()',1);	
}
function safariHack ( ) {
		
	var imgBg = [];
	
	imgBg['img_1'] = "url('"+imageURL+"bg/top_left_repeat.jpg') bottom left repeat-x #A0E5E5";
	imgBg['img_2'] = "url('"+imageURL+"bg/top_left.jpg') bottom right no-repeat";
	imgBg['img_3'] = "url('"+imageURL+"bg/top_center.jpg') bottom left no-repeat #A0E5E5";
	imgBg['img_4'] = "url('"+imageURL+"bg/top_right.jpg') bottom left repeat-x #A0E5E5";
	imgBg['img_5'] = "url('"+imageURL+"bg/left_repeat.jpg') top left repeat-x";
	imgBg['img_6'] = "url('"+imageURL+"bg/left.jpg') top right no-repeat";
	imgBg['img_7'] = "url('"+imageURL+"bg/right_repeat.jpg') top left repeat-x";
	imgBg['img_8'] = "url('"+imageURL+"bg/right.jpg') top left no-repeat";
	imgBg['img_9'] = "url('"+imageURL+"bg/bottom_left.jpg') top right no-repeat #5B9E2F";
	imgBg['img_10'] = "url('"+imageURL+"bg/bottom_center.jpg') top left no-repeat #5B9E2F";
	imgBg['img_11'] = "url('"+imageURL+"bg/bottom_right.jpg') top left no-repeat #5B9E2F";
	
	for( var i in imgBg ) {
			
		document.getElementById(i).style.background = imgBg[i];
	}

}

function noFlashDetector () {

	if( FlashDetector.getVersion() == -1 || FlashDetector.getVersion() < this.version ) {			
		safariHack();
		document.getElementById('img_12').style.background="url('"+imageURL+"bg/background_no_flash.jpg') top left no-repeat";							
	}
}