
var timerOn = null;

function showMenu(){
	if(timerOn != null){
		clearTimeout(timerOn);
	}
	if (document.getElementById){
		document.getElementById("Characters").style.visibility="visible";	
	}
	if (document.layers){
		document.Characters.visibility="show";
	}
}


function hideMenu(){
	timerOn = setTimeout("hideNow()", 500);
}


function hideLink(){
	if (document.layers){
		timerOn = setTimeout("hideNow()", 500);
	}
}


function hideNow(){
	if (document.getElementById){
		document.getElementById("Characters").style.visibility="hidden";
	}
	if (document.layers){
		document.Characters.visibility="hide";
	}
}


function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
