//現在地色替え
function youAreHere(sel){
	if(sel != "none"){	
		var selId = sel;
		document.getElementById(selId).src=document.getElementById(selId).src.replace(".gif","_on.gif");
		document.getElementById(selId).className = "now";
	}	
}
