var id = null;
function menustart(id) {
 document.getElementById(id).style.visibility = "visible";
 if (navigator.appName == 'Microsoft Internet Explorer'){
	 document.getElementById(id).style.top = "160";
 }
}

function menustop(id) {
 document.getElementById(id).style.visibility = "hidden";
}

function hover(par){
 document.getElementById(par).className = 'navhover';
}
function hoverout(par){
 document.getElementById(par).className = '';
}
