//Over State on Left Nav Div
divHover = function() {
	var divs = document.getElementById("leftNav").getElementsByTagName("DIV");
	for (var i=0; i<divs.length; i++) {
		divs[i].onmouseover=function() {
			this.className+=" divHover";
		}
		divs[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" divHover\\b"), "");
		}
	}
}

//if (document.all&&document.getElementById) window.onload=divHover;
if (window.attachEvent) window.attachEvent("onload", divHover);
