/*
 CSS Dropdown Javascript for Internet Explorer
 by Mike Lopez based on Son-Of-Sucker-Fish IE Hack
 http://coderscult.com
*/

var liHover = function () {
 var liEls = document.getElementById ("dropdown").getElementsByTagName ("LI");
 for (var i = 0; i < liEls.length; i++) {
  liEls[i].onmouseover = function () {
   this.className += " lihover";
  }
  liEls[i].onmouseout = function () {
   this.className = this.className.replace (new RegExp (" lihover\\b"), "");
  }
 }
}
if (window.attachEvent) window.attachEvent ("onload", liHover);