// タブ切り替え用Javascript
// jquery.jsと併用することで動作します。

function hideAll() {
	//Cookie読み出し
	tabnum = $.cookie('tabNumber');

	//Cookieがあった場合の処理
	if (tabnum == 1){
		$("#holel_list_eco").show();
		$("#holel_list_bus").hide();
		return;
	}
	else if (tabnum == 2) {
		$("#holel_list_eco").hide();
		$("#holel_list_bus").show();
		return;
	}

	// Cookieが存在しない場合の処理
	// タブが2つのとき、固定で表示させるとき
	$("#holel_list_eco").show();
	$("#holel_list_bus").hide();

}
function ecoShow() {
	$("#holel_list_eco").fadeIn("fast");
	$("#holel_list_bus").hide();

	$.cookie('tabNumber','1' , { expires: 0 });
}

function busShow() {
	$("#holel_list_eco").hide();
	$("#holel_list_bus").fadeIn("fast");

	$.cookie('tabNumber','2' , { expires: 0 });
}

