var stage = 1;

function switchMe(y,z)
{
	icon = y + z + ".gif";
	document["switcher"].src = icon;
	
	who = "swap-" + stage;
	divel=document.getElementById(who);
	divel.style.visibility="hidden";
	who = "swap-text" + stage;
	divel=document.getElementById(who);
	divel.style.visibility="hidden";
	
	
	who = "swap-" + z;
	divel=document.getElementById(who);
	divel.style.visibility="visible";
	who = "swap-text" + z;
	divel=document.getElementById(who);
	divel.style.visibility="visible";
	stage = z;
}
