function show_div(id){	
    document.getElementById(id).style.display="";
//    document.getElementById(id).style.top=MenuBarTop;
}
function hide_div(id){
  document.getElementById(id).style.display="none";
}

var count;
var menu_all = new Array("menu1", "menu2", "menu3", "menu4");
var menu_all_total = menu_all.length;
function menu_hide_all(){
  for(i=0; i<menu_all_total;i++){ 
    hide_div(menu_all[i]);
  }
}
function menu_disp(id){
  menu_hide_all();
  show_div(id);
}

function menu_cls(){
  count = setTimeout("menu_hide_all()", 80);
}