/* attach iehover class to menu lists to get them working in ie6- */
ieHover = function() {
	var menuEls = document.getElementById("menulist").getElementsByTagName("LI");
	var i = menuEls.length;
	while(i--) {
		menuEls[i].onmouseover = function() {
			this.className += " iehover";
		}
		menuEls[i].onmouseout=function() {
			this.className = this.className.replace(/\siehover$/, "");
		}
	}
};
// if ie6 or quirks mode...
if ((document.all && !window.opera && !window.XMLHttpRequest) || (document.compatMode && document.compatMode == "BackCompat")) {
	window.attachEvent("onload", ieHover);
}

