// gets the nav menu to work in IE since the pseudo class ":hover" only works on links (<a>) in IE
startList = function() {
if (document.all&&document.getElementById) {
//navRoot = document.getElementById("navigation");
//for (i=0; i<navRoot.childNodes.length; i++) {

navRoot = document.getElementById("navigation");
navLis = navRoot.getElementsByTagName('li');
for (i=0; i<navLis.length; i++) {

//node = navRoot.childNodes[i];

node = navLis[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
//window.onload=startList;

