	jsHover = function() {
		var cli = document.getElementById("nav").getElementsByTagName("LI");
		for (var i=0, len=cli.length; i<len; i++) {
			cli[i].onmouseover=function() { this.className+=" jshoverli"; }
			cli[i].onmouseout=function() { this.className=this.className.replace(" jshoverli", ""); }
		}
		var cdiv = document.getElementById("nav").getElementsByTagName("div");
		for (var j=0, len=cdiv.length; j<len; j++) {
			cdiv[j].onmouseover=function() { this.className+=" jshoverdiv"; }
			cdiv[j].onmouseout=function() { this.className=this.className.replace(" jshoverdiv", ""); }
		}
		var ca = document.getElementById("nav").getElementsByTagName("a");
		for (var k=0, len=ca.length; k<len; k++) {
			ca[k].onmouseover=function() { this.className+=" jshovera"; }
			ca[k].onmouseout=function() { this.className=this.className.replace(" jshovera", ""); }
		}
	}
	if (window.attachEvent && navigator.userAgent.indexOf("Opera")==-1) window.attachEvent("onload", jsHover);