var splashPercent = 0;
var splashDiv = null; 
var ratio = 538 / 390;
var linkToCall = "";
var soundPlayed = true;

function splashSound(){
	if (soundPlayed == false){
		//playSoundObj("sounds/harley-davidson-revit-short.MP3","roar");
		playSoundObj("sounds/harley-davidson-revit-short.WAV","roar");
		soundPlayed = true;
	}
}
function splashOut(){
	if (!splashDiv){
		splashDiv = document.getElementById("splashScreen");
	}
	if (splashPercent < 400){
	  splashPercent = splashPercent + 20;
	  splashDiv.style.width = splashPercent;
	  splashDiv.style.height = splashPercent * ratio;
	  splashDiv.style.left = document.body.clientWidth / 2 - splashPercent / 2;
	  splashDiv.style.top = document.body.clientHeight / 2 - splashPercent * ratio / 2;
	  window.setTimeout(splashOut,1);
	}else{
	  //alert(linkToCall);
	  document.location = linkToCall;
	}
} 


function splashStart(link){
	soundPlayed = false;
	linkToCall = link;
	//window.setTimeout(splashSound,1);	
	window.setTimeout(splashOut,2000);	
}