// JavaScript Document
/* Extra stuff to enable nav hovers in IE/Win */
ie_hover = function() {
	var ieEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<ieEls.length; i++) {
		ieEls[i].onmouseover=function() {
			this.className+=" ie_hover";
		}
		ieEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" ie_hover\\b"), "");
		}
	}
}

if (window.attachEvent) window.attachEvent("onload", ie_hover);