function display_restaurant_category(num,flg){

if(num==undefined){

	num = "tab_restaurant_01_01";

}

	

	//window.open(url);



	switch(num) {

		case "tab_restaurant_01_01":

			document.getElementById("restaurant_01_01").style.display = "block";

			document.getElementById("restaurant_01_02").style.display = "none";

			document.getElementById("restaurant_01_03").style.display = "none";

			document.getElementById("restaurant_01_04").style.display = "none";

			document.getElementById("tab_restaurant_01_01").src="/urawa/shared/images/tab_plan01_on.gif";

			document.getElementById("tab_restaurant_01_02").src="/urawa/shared/images/tab_plan02_off.gif";

			document.getElementById("tab_restaurant_01_03").src="/urawa/shared/images/tab_plan03_off.gif";

			document.getElementById("tab_restaurant_01_04").src="/urawa/shared/images/tab_plan05_off.gif";

			break;

			

		case "tab_restaurant_01_02":

			document.getElementById("restaurant_01_01").style.display = "none";

			document.getElementById("restaurant_01_02").style.display = "block";

			document.getElementById("restaurant_01_03").style.display = "none";

			document.getElementById("restaurant_01_04").style.display = "none";

			document.getElementById("tab_restaurant_01_01").src="/urawa/shared/images/tab_plan01_off.gif";

			document.getElementById("tab_restaurant_01_02").src="/urawa/shared/images/tab_plan02_on.gif";

			document.getElementById("tab_restaurant_01_03").src="/urawa/shared/images/tab_plan03_off.gif";

			document.getElementById("tab_restaurant_01_04").src="/urawa/shared/images/tab_plan05_off.gif";

			break;

			

		case "tab_restaurant_01_03":

			document.getElementById("restaurant_01_01").style.display = "none";

			document.getElementById("restaurant_01_02").style.display = "none";

			document.getElementById("restaurant_01_03").style.display = "block";

			document.getElementById("restaurant_01_04").style.display = "none";

			document.getElementById("tab_restaurant_01_01").src="/urawa/shared/images/tab_plan01_off.gif";

			document.getElementById("tab_restaurant_01_02").src="/urawa/shared/images/tab_plan02_off.gif";

			document.getElementById("tab_restaurant_01_03").src="/urawa/shared/images/tab_plan03_on.gif";

			document.getElementById("tab_restaurant_01_04").src="/urawa/shared/images/tab_plan05_off.gif";

			break;

			

		case "tab_restaurant_01_04":

			document.getElementById("restaurant_01_01").style.display = "none";

			document.getElementById("restaurant_01_02").style.display = "none";

			document.getElementById("restaurant_01_03").style.display = "none";

			document.getElementById("restaurant_01_04").style.display = "block";

			document.getElementById("tab_restaurant_01_01").src="/urawa/shared/images/tab_plan01_off.gif";

			document.getElementById("tab_restaurant_01_02").src="/urawa/shared/images/tab_plan02_off.gif";

			document.getElementById("tab_restaurant_01_03").src="/urawa/shared/images/tab_plan03_off.gif";

			document.getElementById("tab_restaurant_01_04").src="/urawa/shared/images/tab_plan05_on.gif";

			break;			



		default:

			break;

	}

	if(flg!=undefined){

		location.hash=flg;

	}

	return;

}

/*

function tab_onclick(){

	var hash = window.location.hash;

	hash = hash.split("?");

	hash = hash[0].split("#");

	display_restaurant_category(hash[1]);

}
*/

function tab_onclick(fn){
	display_restaurant_category(fn);
}
