var timers=new Array();


function hideSub(id){
  timers[id]=setTimeout("setVH('submnu"+id+"');getEl('lnk"+id+"').firstChild.style.backgroundColor='#e1e1e1';",100);
}



function showSub(id){
  if(timers[id])clearTimeout(timers[id]);
  setVV("submnu"+id);
  getEl("lnk"+id).firstChild.style.backgroundColor="#ededed";
}




