// This method is called when loaded. This hides the welcome boxes so that they can be shown via the effect. If Javascript is disabled they are not hidden and therefore shown!
function hideWelcome()
{
	document.write("<span id='welcome' style='display:none'>");
}

// This method is run once the page is done loading
// Shows a Appear effect on the two logoes
function frontPageAppear()
{
	//document.getElementById('welcome').style.display = "none";
	new Effect.Appear('welcome',{duration:0.3});
}