function preload()
{
	imagebg = new Image();
	imagebg.src = "images/showdown_backdrop.jpg";
}

function TimeToShow(TextDelay)
{
	setTimeout("ShowDiv('starthidden')",TextDelay);
	setTimeout("ShowDiv('startagain')",TextDelay+500);
}

function ShowDiv(ID)
{
	document.getElementById(ID).style.visibility = "visible";
	
}

