﻿// JScript File
function gt(name){
  return document.getElementById(name);
}
var nowmenuimg;
var nowmenulink;
var nowmenulist;
//
function showmenu(menuimg,menulink,menulist){
   hidemenu();
   menulist.style.display="";
   menuimg.style.backgroundColor="#515151";
   menulink.style.backgroundColor="#515151";
   
   nowmenuimg= menuimg;
   nowmenulink= menulink;
  nowmenulist= menulist;
  setTimeout("document.onclick=hidemenu;",200);
}
function hidemenu(){
   
   if(event.srcElement != nowmenuimg ){
   
    document.onclick="";
   if(nowmenuimg){
      nowmenuimg.style.backgroundColor="";
     
   }
    if(nowmenulink){
         
         nowmenulink.style.backgroundColor="";
       }
     if(nowmenulist){
     
      nowmenulist.style.display="none";
     
     }
   
   }
   
  
   
}
