// IE PC is in violation of public inebriation. The following script is cold water and hot coffee.
// IE PC does not obey the li:hover because it is inept.
// We hate Microsoft's browser because it wastes our time and bloats our code.

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("GlobalNav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" hover";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" hover", "");
   }
   }
  }
 }
}
window.onload=startList;
