startList = function() {
if (document.all && document.getElementById) {
navRoot1 = document.getElementById("navigation");
for (i=0; i<navRoot1.childNodes.length; i++) {
node1 = navRoot1.childNodes[i];
if (node1.nodeName=="LI") {
node1.onmouseover=function() {
  this.className+="over";
}
node1.onmouseout=function() {
  this.className=this.className.replace("over", "");
}
}
}
}
}

function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
oldonload();
func();
}
}
}

// Remove direct window.onload manip - CMH 6/6/05
//  window.onload=startList;

addLoadEvent(startList);
