// JavaScript Document

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
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;



/*
OK, OK, so that darn IE/Win has to ruin everything and not do as it’s told. 
IE/Win only allows the :hover pseudo-class to be applied to a link — 
so the li:hover that makes the sub-menus appear means nothing to IE 6.
A tiny jot of JavaScript is required to kick IE back into action :



*/
