<!--

//==============================================================================

//	ナビゲーション設定

//==============================================================================

ImgName = new Array('m01','m02','m03','m04','m05','m06','m07','m08','m09');

ImgStat = new Array('out','over');



B = new Array();

if(document.images)for( j=0 ; j<ImgStat.length ; j++ ){

	for( i=0 ; i<ImgName.length ; i++ ){

		B[j*ImgName.length +i] = new Image();

		B[j*ImgName.length +i].src = '/image/' + ImgName[i] + '_' + ImgStat[j] + '.gif';

	}

}



function ChangeImg(i,j){

	document.images[ImgName[i]].src = B[j*ImgName.length + i].src;

}

/* header side mouseover */
function swapimage(nm,img) {
	document.images[nm].src = img;
}
//--> 

