startList = function() {
	if (document.all&&document.getElementById) {
		root_DIV = document.getElementById("Cat");
		for (j=0; j<root_DIV.childNodes.length; j++) {
			root_UL = root_DIV.childNodes[j];
			for (i=0; i<root_UL.childNodes.length; i++) {
				node_LI = root_UL.childNodes[i];
				if (node_LI.nodeName=="LI") {
					node_LI.onmouseover=function() {this.className+=" over"; };
					node_LI.onmouseout=function() {this.className=this.className.replace(" over", ""); }
// Level 3
					for (i3=0; i3<node_LI.childNodes.length; i3++) {
						node_UL2 = node_LI.childNodes[i3];
						if (node_UL2.nodeName=="UL") {
							for (i2=0; i2<node_UL2.childNodes.length; i2++) {
								node_LI2 = node_UL2.childNodes[i2];
								if (node_LI2.nodeName=="LI") {
									node_LI2.onmouseover=function() {this.className+=" over2"; };
									node_LI2.onmouseout=function() {this.className=this.className.replace(" over2", ""); }
								}
							}
						}
					}
				}
			}
		}
	}
}

window.onload=startList;

