<!--
psHover = function() {
	var psEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<psEls.length; i++) {
		psEls[i].onmouseover=function() {
			this.className+=" pshover";
		}
		psEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" pshover\\b"), "");
		}
	}

}
if (window.attachEvent) window.attachEvent("onload", psHover);
//-->

