

//salonのページ内リンクに飛ぶための処理

//jsを使用するhtmlに、相対パス「dirPath」を定義
//例：dirPath="../";

salonUrl=dirPath+"salon/index.html";
voiceUrl=dirPath+"voice/index.html";
estheticUrl=dirPath+"esthetic/index.html";

/*
//確認用
document.write("dirPath:"+dirPath+"<br />");
document.write("directUrl:"+directUrl);
*/

function jumpUrl(dir,idname){
	dirUrl=dirPath+dir+"/index.html";
	id="#"+idname;
location.href=dirUrl+id;
}

/*
function jumpSalon(id){
location.href=salonUrl+id;
}

function jumpVoice(id){
location.href=voiceUrl+id;
}

function jumpEsthetic(id){
location.href=estheticUrl+id;
}
*/
