  function show(obj){document.getElementById(obj).className="dis";}
  function hidd(obj){document.getElementById(obj).className="undis";}
  function menuFix()
  {   
  navRoot=document.getElementById("leftBar").getElementsByTagName("li");
  for( i=0; i<navRoot.length; i++){
    node=navRoot[i];
	if( node.className=="nav" ){
	  node.onmousedown=function(){
		for( z=0; z<navRoot.length; z++){
		  if( navRoot[z].className=="nav" ){ navRoot[z].childNodes[1].className="undis"; }
		  }
        for(h=0;h<this.childNodes.length;h++){ 
		if(this.childNodes[h].tagName=="UL"){ this.childNodes[h].className="dis"; }
		}
	  }
	  }
	}
  }
window.onload=menuFix;
