function startMenu() {
	if (document.all&&document.getElementById) {
		cssmenu = document.getElementById("csstopmenu");
		doit(cssmenu);
		cssmenu2 = document.getElementById("csstopmenu2");
		doit(cssmenu2);
		cssmenu3 = document.getElementById("csstopmenu3");
		doit(cssmenu3);
		cssmenu4 = document.getElementById("csstopmenu4");
		doit(cssmenu4);
		cssmenu5 = document.getElementById("csstopmenu5");
		doit(cssmenu5);
	}
}
function doit(cssmenu)
{
	for (i=0; i<cssmenu.childNodes.length; i++) {
		node = cssmenu.childNodes[i];
		if (node.nodeName=="LI") {
			node.onmouseover=function() {
				this.className+=" over";
			}
			node.onmouseout=function(){                  
				this.className=this.className.replace(" over", "")
			}
		}
	}
}
function mouseOverwb(obj, c) {
	obj.style.cursor = "hand";
	obj.style.backgroundColor = c;
}
		
function mouseOutwb(obj, c) {
	obj.style.cursor = "default";
	obj.style.backgroundColor = c;
}
