// JavaScript :: CSS/JS Menu System

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