if (typeof getOnLoads != "undefined") {
	getOnLoads();
}

// This script controls the drop-down menu for the second-level navigation
// Thanks to Patrick Griffiths & Dan Webb from www.alistapart.com, issue 162, November 7, 2003
startList = function() {
if (document.all && document.getElementById) {
navRoot = document.getElementById("dropdown");
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;