// JavaScript Code for getting Internet Explorer to allow hovering non link elements

over = function() {
	var dropDown = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<dropDown.length; i++) {
		dropDown[i].onmouseover=function() {
			this.className+=" over";
		}
		dropDown[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" over\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", over);