// ----------------------------------------------------------------------------
// file: hmenu.js
// desc: javascript requires to make drop-down menu work with IE
// 
// Audit Trail:
// 14-Nov-2005 webmaster@kofc1120.org
//   Copied javascript as from www.alistapart.com
// ----------------------------------------------------------------------------
startList = function() {
  if (document.all&&document.getElementById) {
    navRoot = document.getElementById("MenuList");
    for (i=0; i<navRoot.childNodes.length; i++) {
      node = navRoot.childNodes[i];
      if (node.nodeName=="LI") {
        node.onmouseover=function() {
         this.className+=" over";
        }
        node.onmouseout=function() {
          this.className=this.className.replace(" over", "");
        }
      }
    }
  }
}

window.onload=startList;

