You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
474 B
18 lines
474 B
startList = function() {
|
|
if (document.all&&document.getElementById) {
|
|
navRoot = document.getElementById("nav");
|
|
for (i=0; i<navRoot.childNodes.length; i++) {
|
|
node = navRoot.childNodes[i];
|
|
if (node.nodeName=="LI") {
|
|
node.onmouseover=function() {
|
|
this.className+=" over";
|
|
}
|
|
node.onmouseout=function() {
|
|
this.className=this.className.replace(" over", "");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
window.onload=startList;
|