//Get IE to work with the rollover menus by giving its <LI>s the class "over" onmouseover and removing it onmouseout
function ieMenuFix() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("navimenu"); //create a variable navRoot that points to the rollover menu
		for (i=0; i<navRoot.childNodes.length; i++) { //iterate through navRoot's childNodes
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") { //find just the <li>s
				node.onmouseover=function() { //give them an onmouseover event to add the class "over"
					this.className+=" over";
				}
				node.onmouseout=function() { //and an onmouseout event to remove it
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}