startList = function() {
	fixIEhoverBug("menu");
}

var str = "";

function fixIEhoverBug(tid) {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById(tid);
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			str += node.nodeName +"\n";
			if (node.nodeName=="LI") {
				for (j=0; j<node.childNodes.length; j++) {
					ulnode = node.childNodes[j];
					if (ulnode.nodeName == "UL") {
						for (k=0; k<ulnode.childNodes.length; k++) {
							subnode = ulnode.childNodes[k];
							str += "   "+ subnode.nodeName +"\n";
							if (subnode.nodeName=="LI") {
								subnode.onmouseover=function() {
									this.className+=" over";
								}
								subnode.onmouseout=function() {
									this.className=this.className.replace(" over", "");
								}
							}
						}
					}
				}
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}


window.onload=startList;