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