function hover(obj)
{
 if(document.all)
 {
   UL = obj.getElementsByTagName('ul');
   if(UL.length > 0)
   {
     UL[0].style.display = 'block';
   }
 }
}

function hout(obj)
{
 if(document.all)
 {
   UL = obj.getElementsByTagName('ul');
   if(UL.length > 0)
   {
     UL[0].style.display = 'none';
   }
 }
}

function setHover(id){
  LI = document.getElementById(id).getElementsByTagName('li');
  nLI = LI.length;
  for(i=0; i < nLI; i++){
LI[i].onmouseover = function()
   {
     hover(this);
   }
   LI[i].onmouseout = function()
   {
     hout(this);
   }
  }
}


