// IE hack
startList = function() {
	if (document.all && document.getElementById) {
		navRoot = document.getElementById("menu_left");
		for (i=0; i<navRoot.childNodes.length; i++) {
			
			node = navRoot.childNodes[i];
			if (node.nodeName == "LI") {
				node.onmouseover=function() {
					this.className += " over";
				}
				node.onmouseout=function() {
					this.className = this.className.replace(" over", "");
				}

				for (j=0; j<node.childNodes.length; j++) {
					subNode = node.childNodes[j];
					if (subNode.nodeName == "UL") {
						for (k=0; k<subNode.childNodes.length; k++) {
							subSubNode = subNode.childNodes[k];
							if (subSubNode.nodeName == "LI") {
								subSubNode.onmouseover=function() {
									this.className += " over";
								}
								subSubNode.onmouseout=function() {
									this.className = this.className.replace(" over", "");
								} // hazzah!
							} // oh how I love IE6
						} // 9 closing brackets in a row >.<
					} // I guess I should have written it recursively anyway
				} // oh well... too late...
			}
		}
	}
}
window.onload=startList;

