// JavaScript Document

startList = function() {
if (isFirefox=navigator.userAgent.indexOf("Firefox")>0) {
if (document.all&&document.getElementById) {//if start,No.1
navRoot = document.getElementById("menu");
for (n=0; n<navRoot.childNodes.length; n++) {
node = navRoot.childNodes[n];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}//onmouseover end
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
}//onmouseout end
}//end if
}//eixt for
}//end if,No.1
}//end if
else{
var navRoot = document.getElementById("menu").getElementsByTagName("LI");
for (var n=0; n<navRoot.length; n++) {
navRoot[n].onmouseover=function() {
this.className+=" over";
}
navRoot[n].onmouseout=function() {
this.className=this.className.replace(new RegExp(" over"), "");
}
}//end for
}//end if
}
//end


