<!--//--><![CDATA[//><!--
Hover = function() {
   var Els = document.getElementById("menu").getElementsByTagName("li");
   for (var i=0; i<Els.length; i++) {
      Els[i].onmouseover=function() {
         this.className+=" hover";
      }
      Els[i].onmouseout=function() {
      this.className="";
      }
   }
}
if (window.attachEvent) window.attachEvent("onload", Hover);
//--><!]]>
