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