// JavaScript Document<!--function initNav() {	if (document.getElementById) {		var navRoot = document.getElementById("nav_pri");		for (var i=0; i<navRoot.childNodes.length; i++) {			var node = navRoot.childNodes[i];			if (node.nodeName=="LI") {				node.onmouseover=function() {					this.className+=" over";				}				node.onmouseout=function() {					if (this.className.indexOf(" over") > -1) {						this.className=this.className.replace(" over", "");					} else {						this.className=this.className.replace("over", "");					}				}			}		}	}}function pageInit() {	initNav();}window.onload=pageInit;-->
