/* マウスホーバー処理（テキストの表示とページの移動）
     ... 引数 index : 表示文字列を識別する数値
     ... 引数 hovered : マウス位置（論理型 : オブジェクト上ならtrue/それ以外はfalse）
	 
　　0,1 北条
    2,3 清水
	4,5 小野

*/
	 
	 
	 
function Hover(index, hovered) {
    if (hovered) {
        if (index == 0 || index == 1) {
			document.getElementById("detail1").className = "on";
			document.getElementById("matsuyamamap").src = "http://img01.ecgo.jp/usr/matsuyamawel/img/090618203159.gif";
		}
		if (index == 2 || index == 3) {
			document.getElementById("detail2").className = "on";
			document.getElementById("matsuyamamap").src = "http://img01.ecgo.jp/usr/matsuyamawel/img/090618202608.gif";
		}
		if (index == 4 || index == 5) {
			document.getElementById("detail3").className = "on";
			document.getElementById("matsuyamamap").src = "http://img01.ecgo.jp/usr/matsuyamawel/img/090618203126.gif";
		}
	} else 
	{
		document.getElementById("matsuyamamap").src = "http://img01.ecgo.jp/usr/matsuyamawel/img/090618203315.gif";
        document.getElementById("detail1").className = "off";
        document.getElementById("detail2").className = "off";
        document.getElementById("detail3").className = "off";
    }
}
