function show(what){
	document.getElementById(what).src="images/menu_"+what+"_over.gif";
}
function hide(what){
	document.getElementById(what).src="images/menu_"+what+".gif";
}

function init(){
	setTimeout('fade1()',5000); 
	window.document.flash.play();
	if(window.document.logo && !window.document.logo_home){
		window.document.logo.play();
	}
}

function fade1()
{
	document.all.top_photo.filters[0].apply();
	document.all.top_0.style.display = "none";
	document.all.top_1.style.display = "inline";
	document.all.top_photo.filters[0].play();
	setTimeout('fade2()',5000);
}

function fade2()
{
	document.all.top_photo.filters[0].apply();
	document.all.top_1.style.display = "none";
	document.all.top_2.style.display = "inline";
	document.all.top_photo.filters[0].play();
	setTimeout('fade3()',5000)
}

function fade3()
{
	document.all.top_photo.filters[0].apply();
	document.all.top_2.style.display = "none";
	document.all.top_0.style.display = "inline";
	document.all.top_photo.filters[0].play();
	setTimeout('fade1()',5000)
}