  <!--&#91;if lte IE 6&#93;>
   
      <script type="text/javascript">
  
       
  
      function addHover()
   
      {
   
        var hoverElements = document.getElementById("navi").getElementsByTagName("li");
   
        for (var i=0; i<hoverElements.length; i++)
   
        {
   
          hoverElements&#91;i&#93;.onmouseover = function()
  
          {
  
            this.className = "navihover";
  
          }
  
          hoverElements&#91;i&#93;.onmouseout = function()
  
          {
  
            this.className = "";
  
          }
  
        }
  
      }
  
      if (window.attachEvent)
  
      {
  
        window.attachEvent("onload", addHover);
  
      }
  
       
  
      </script>
  
      <!&#91;endif&#93;-->
