/*
Commented out because this doesn't seem to do anything but cause an error in IE7
I'm not sure how the dropdown menus are working. 
Something somewhere probably calls javascripts/superfish.js?

startList = function(listId) {
  if (document.all&&document.getElementById) {
    navRoot = document.getElementById(listId);

    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=function() {
  startList("nav");
  startList("nav2");
}
*/

