var liner='';
var cnt=0;
startList = function() {
	if (document.all && document.getElementById) {
		navRoot = document.getElementById("dmenu");
		for (i=0; i < navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" harry";
					cnt++;
					liner='' + cnt + ':'+this.className ;
					status=liner;

				}
				node.onmouseout=function() {
					this.className=this.className.replace(" harry", "");
					liner+=':'+this.className;
					status=liner;
				}
			}
		}
	}
}

function chng(suffix){
	id="ul_"+suffix;
	if(document.getElementById(id)){
	//alert("id="+id);
		abra=document.getElementById(id).style;
		if(abra.display=='block'){
			abra.display='none';
		}else{
			abra.display='block';
		}
		return false;
	}
}		
//window.onload=startList;