// JavaScript Document
var SplashLoopCount = 3;
var mydomain = window.location.hostname;
//var SplashAnimationFile = "http://www.eveningtimesbingo.co.uk/content/flash/globalcom_04.swf";

var SplashAnimationFile = "http://" + mydomain + "/content/flash/globalcom_06.swf";

//var SplashAnimationFile = "http://localhost/Projects/bingomehappy/content/flash/globalcom_05.swf";


Shadowbox.init({
		overlayColor:		"#000000",
		overlayOpacity:		0.5,
		flashParams:		{bgcolor: "#FFFFFF"},
		flashVars:			{playCount: SplashLoopCount},
		modal:				true,
		displayNav:			false,
		animate: 			false
});

window.onload = function() {
		
	Shadowbox.open({
		content: 			SplashAnimationFile,
		player: 			'swf',
		width:				600,
		height:				300	
	}); 
	//alert(mydomain);
}

function closeSplash()
{
	Shadowbox.close();	
}
