function menuSetup(){
	if (document.all&&document.getElementById) {
		navRoot=document.getElementById("menu");
		navSub=document.getElementById("garem");
		navSsub=document.getElementById("dojom");
		navSssub=document.getElementById("gallem");
		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", "");
				}
			}
		}
		//alert(navSub.childNodes.length);
		for (i=0; i<navSub.childNodes.length; i++) {
			subNode=navSub.childNodes[i];
			if (subNode.nodeName=="LI") {
				subNode.onmouseover=function() {
					this.className+=" over";
				}
				subNode.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
		for (i=0; i<navSsub.childNodes.length; i++) {
			ssubNode=navSsub.childNodes[i];
			if (ssubNode.nodeName=="LI") {
				ssubNode.onmouseover=function() {
					this.className+=" over";
				}
				ssubNode.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
		for (i=0; i<navSssub.childNodes.length; i++) {
			sssubNode=navSssub.childNodes[i];
			if (sssubNode.nodeName=="LI") {
				sssubNode.onmouseover=function() {
					this.className+=" over";
				}
				sssubNode.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
