blob: 6b393c081c8563b564b8a8ae799792472a59ca85 [file] [log] [blame]
Ted Kremenek5a9bd112010-02-08 23:50:54 +00001startList = function() {
2 if (document.all&&document.getElementById) {
3 navRoot = document.getElementById("nav");
4 for (i=0; i<navRoot.childNodes.length; i++) {
5 node = navRoot.childNodes[i];
6 if (node.nodeName=="LI") {
7 node.onmouseover=function() {
8 this.className+=" over";
9 }
10 node.onmouseout=function() {
11 this.className=this.className.replace(" over", "");
12 }
13 }
14 }
15 }
16}
17window.onload=startList;