/* index shop_tab */
function selectEbisu() {
	document.getElementById("shopEbisu").style.display = "block";
	document.getElementById("shopSakura").style.display = "none";
}

function selectSakura() {
	document.getElementById("shopEbisu").style.display = "none";
	document.getElementById("shopSakura").style.display = "block";
}

