// JavaScript Document

//imgHover:マウスオーバーで画像を入れ替える関数
function imgHover(path){
	var target=document.getElementById('map');
	var imagePath='http://www.pharmacistjobsearch.com/images/top/map/'+path;
	target.src=imagePath;
}

//imgOff:マウスが離れたときにデフォルトの画像を表示する関数
function imgOff(){
	var target=document.getElementById('map');
	target.src="http://www.pharmacistjobsearch.com/images/top/map/src_map.gif";/*デフォルト画像*/
}

