// JavaScript Document
var CategoryListLi=document.getElementById("CategoryList").getElementsByTagName("li");
for(i=0;i<CategoryListLi.length;i++){
	if(CategoryListLi[i].className=="c-cat-depth-1"){
      CategoryListLi[i].getElementsByTagName("a")[0].onclick=function(){
		  var peeul=this.parentElement.getElementsByTagName("ul");
	      if(peeul.length>0){
		      if(peeul[0].className==""){culclose();peeul[0].className="open";}
		      else {peeul[0].className="";}
	      }
		  else{
			  culclose();
		  }
	      return false;
	  };
	  //CategoryListLi[i].getElementsByTagName("ul")[0].onmouseout=function(){this.parentElement.getElementsByTagName("ul")[0].style.display="none";return false;};
	  
	}
}
function culclose(){
	for(i=0;i<CategoryListLi.length;i++){
	  var cll1=CategoryListLi[i].getElementsByTagName("ul");
	  if(cll1.length>0){
		cll1[0].className="";  
	  }
	}
}

