


//ロールオーバー設定

var imgM = new Array();
//第一階層
		imgM[0] = new Image();  imgM[0].src = "img/sub01.gif";
		imgM[1] = new Image();  imgM[1].src = "img/sub01_ov.gif";
		imgM[2] = new Image();  imgM[2].src = "img/sub02.gif";
		imgM[3] = new Image();  imgM[3].src = "img/sub02_ov.gif";
		imgM[4] = new Image();  imgM[4].src = "img/sub03.gif";
		imgM[5] = new Image();  imgM[5].src = "img/sub03_ov.gif";
		imgM[6] = new Image();  imgM[6].src = "img/sub04.gif";
		imgM[7] = new Image();  imgM[7].src = "img/sub04_ov.gif";
		imgM[8] = new Image();  imgM[8].src = "img/sub05.gif";
		imgM[9] = new Image();  imgM[9].src = "img/sub05_ov.gif";
		
		imgM[12] = new Image();  imgM[12].src = "image/up.gif";
		imgM[13] = new Image();  imgM[13].src = "image/up_ov.gif";

function Min(nam,num) {
		 document.images[nam].src = imgM[num].src;
}
function Mout(nam,num) {
		 document.images[nam].src = imgM[num].src;
}

