
//function loadCssMenu() {
loadCssMenu = function() {
	alert('found');
	//if (document.all&&document.getElementById) {
	navRoot = $("cssmenu");
	for (i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		alert(node.localName);
		if (node.localName=="LI") {
			
			node.innerHtml+=" x";
			node.onmouseover=function() {
				this.className+=" over";
				alert('over');
			}
			node.onmouseout=function() {
				this.className=this.className.replace(" over", "");
				alert('out');
			}
		}
	}
	//}
}

function menuover(obj) {	obj.className+=" over";
}
function menuout(obj) {
	obj.className=obj.className.replace(" over", "");
}

/* window.onload=startList; */
