meHover = function() {	var me = document.getElementById("nav").getElementsByTagName("LI");	for (var i=0; i<me.length; i++) {		me[i].onmouseover=function() {			this.className+=" mehover";		}		me[i].onmouseout=function() {			this.className=this.className.replace(new RegExp(" mehover\\b"), "");		}	}}if (window.attachEvent) window.attachEvent("onload", meHover);
