var clearMenu;

function sMenu(id){
   window.clearTimeout(clearMenu);
   document.getElementById(id).style.visibility = 'visible';
}

function hMenu(id){
   clearMenu = setTimeout("hMenu2('"+id+"')", 500);
}

function hMenu2(id){
   document.getElementById(id).style.visibility = 'hidden';
}