<!--

function dropDownIE()
{
   if (document.all)
   {
      var liElement = document.getElementsByTagName("LI");
      for (var i = 0; i < liElement.length; i++)
         if ( liElement[i].className.indexOf("dropDown") != -1 )
         {
            liElement[i].onmouseover = function()
            {
               this.className += " dropDownIE";
            }
            liElement[i].onmouseout = function()
            {
               this.className = this.className.replace(" dropDownIE", "" );
            }
         }
   }
}

if (window.attachEvent) window.attachEvent("onload", dropDownIE);

-->