function masterBtnOver(name){
	if(name=="shopinfo2"){
		document.getElementById("shopinfo").style.background = "url(../img/fji_navi_shopinfo.png) 0 -43px no-repeat";
	}else{
		document.getElementById(name).style.background = "url(img/fji_navi_shopinfo.png) 0 -43px no-repeat";
	}
}

function masterBtnOut(name){
	if(name=="shopinfo2"){
		document.getElementById("shopinfo").style.background = "url(../img/fji_navi_shopinfo.png) 0 0 no-repeat";
	}else{
		document.getElementById(name).style.background = "url(img/fji_navi_shopinfo.png) 0 0 no-repeat";
	}
}

function showLayer(name){
	document.getElementById(name).style.visibility = "visible";
}

function hideLayer(name){
	document.getElementById(name).style.visibility = "hidden";
}