// JavaScript Document

startList = function() {
	if (document.all&&document.getElementById) {
		MenuProj = document.getElementById("m1");
		for (j=0; j<MenuProj.childNodes.length; j++) {
			MenuItemLev1 = MenuProj.childNodes[j];
			for (i=0; i<MenuItemLev1.childNodes.length; i++) {
				MenuItemLev1_Li = MenuItemLev1.childNodes[i];

				if (MenuItemLev1_Li.nodeName=="LI") {MenuItemLev1_Li.onmouseover=function() {this.className+=" over"; }; MenuItemLev1_Li.onmouseout=function() {this.className=this.className.replace(" over", ""); }}
			}
		}
	}





	if (document.all&&document.getElementById) {
		root_DIV = document.getElementById("m2");
		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", ""); }}


		root_DIV = node_LI;
		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", ""); }}
			}
		}


			}
		}
	}
}

window.onload=startList;
