function menuCtrl(menuId){
	if(menuId==""){
	   menuId=0;
	}
	
	var itemStr="";
	for(i=1;i<=7;i++){
		itemStr="sub_0"+i;
		//alert(itemStr);
		document.getElementById(itemStr).style.display="none";
		document.getElementById("sub_0").style.display="none";
	}
	
	
	var temp_bt_name="";
	temp_bt_name="sub_"+menuId;
	document.getElementById(temp_bt_name).style.display="block";
}