startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("groupmenu");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.children[i];
			if (node.tagName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}	
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

startListMainMenu = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("menu");
		for (i=0;navRoot != null && i<navRoot.children.length; i++) {
			node = navRoot.children[i];
			if (node.tagName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}	
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

window.onload=function()
{
  startList();
  startListMainMenu();
}


