/*///////////////////   IE hack for dd menu   ///////////////////*/
startList = function() {
  if(document.getElementById("navigation") != null)
  {
    var listItems = document.getElementById("navigation").getElementsByTagName("li");
    for (i=0; i< listItems.length; i++) {
      listItems[i].onmouseover=function() {
      this.className+=" over";
      }
      listItems[i].onmouseout=function() {
      this.className=this.className.replace(" over", "");
      }
    }
  }
}

if (document.all&&document.getElementById) {
    window.onload=startList; //<-- fire ie hack onload
    }
