
//------- 各ページトップにある写真をカテゴリごとに変更する関数 -------
//
//	htmlファイル内の、『<body onload="img_ctrl('●●●');">』の
//	●●●部分に、表示させたい画像のURLを書いてください。(ルートパスも、拡張子も全部)
function img_ctrl(cname){
	document.getElementById("topImgArea").style.backgroundImage = "url("+ cname +")";
	document.getElementById("topImgArea").style.backgroundRepeat = "no-repeat";
}

//地図のロールオーバー
function map_change(iname){
	document.getElementById("ico_"+iname).src = "map_ico_h.gif";
}
