// JavaScript Document

startList1 = function() {
var nodes1 = document.getElementById("nav1").getElementsByTagName("LI");
for (var i=0; i<nodes1.length; i++) {
nodes1[i].onmouseover = function() {
this.className += " over";
}
nodes1[i].onmouseout = function() {
this.className = this.className.replace(new RegExp(" over\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", startList1);