onload=function(){listMenuArea10=document.getElementById("listMenu10");listMenuArea10.style.background="#000000";listMenuArea10.firstChild.style.color="#ff9900";}
function tub(tubNumber){
	listMenuNumber=document.getElementById("listMenu").getElementsByTagName("li").length;
	listMenuArea10=document.getElementById("listMenu10");
	if(tubNumber==10){
		listMenuArea10.style.background="#000000";
		listMenuArea10.firstChild.style.color="#ff9900";
		for(m=0;m<listMenuNumber;m++){
			listMenuArea = document.getElementById("listMenu"+m);
			listMenuArea.style.background="";
			listMenuArea.firstChild.style.color="";
			document.getElementById("list"+m).style.display="block";
		}
	}else{
		listMenuArea10.style.background="";
		listMenuArea10.firstChild.style.color="";
		for(m=0;m<listMenuNumber;m++){
			var listMenuArea = document.getElementById("listMenu"+m);
			if(tubNumber==m){a="block";b="#000000";c="#ff9900";}else{a= "none";b= "";c= "";}
			document.getElementById("list"+m).style.display=a;
			listMenuArea.style.background=b;
			listMenuArea.firstChild.style.color=c;
		}
	}
}