function emulHover(){
   if(document.all){
      NAV = navigator.appVersion
      IE5 = (NAV.substr(NAV.indexOf('MSIE')+5,1) == '5')?true:false;
      MN  = document.getElementById('menu');
      LI  = MN.getElementsByTagName('li');
      n   = LI.length;
      for(i=0; i<n; i++){
         LI[i].className = 'ieLI';
         LI[i].onmouseover = function(){
            this.className = 'ieLIhover';
            UL    = this.getElementsByTagName('UL');
            NAV   = navigator.appVersion
         }
         LI[i].onmouseout = function(){
            this.className = 'ieLI';
            UL = this.getElementsByTagName('UL');
            if(UL[0]){
               UL[0].style.display = 'none';
            }
         }
      }
   }
}
