// JavaScript Document
<!--ボタンロールオーバー用のJS -->
var img = new Array();
<!--ランド -->
img[0]=new Image(); img[0].src="img/contents/movbtn01_on.gif";
img[1]=new Image(); img[1].src="img/contents/movbtn01_ov.gif";
img[2]=new Image(); img[2].src="img/contents/movbtn02_on.gif";
img[3]=new Image(); img[3].src="img/contents/movbtn02_ov.gif";
img[4]=new Image(); img[4].src="img/contents/movbtn03_on.gif";
img[5]=new Image(); img[5].src="img/contents/movbtn03_ov.gif";
img[6]=new Image(); img[6].src="img/contents/movbtn04_on.gif";
img[7]=new Image(); img[7].src="img/contents/movbtn04_ov.gif";
img[8]=new Image(); img[8].src="img/contents/movbtn05_on.gif";
img[9]=new Image(); img[9].src="img/contents/movbtn05_ov.gif";

img[10]=new Image(); img[10].src="img/contents/movicon_btn01_on.gif";
img[11]=new Image(); img[11].src="img/contents/movicon_btn01_ov.gif";
img[12]=new Image(); img[12].src="img/contents/movicon_btn02_on.gif";
img[13]=new Image(); img[13].src="img/contents/movicon_btn02_ov.gif";
img[14]=new Image(); img[14].src="img/contents/movicon_btn03_on.gif";
img[15]=new Image(); img[15].src="img/contents/movicon_btn03_ov.gif";
img[16]=new Image(); img[16].src="img/contents/movicon_btn04_on.gif";
img[17]=new Image(); img[17].src="img/contents/movicon_btn04_ov.gif";

img[18]=new Image(); img[18].src="img/contents/tvcmbtn_on.gif";
img[19]=new Image(); img[19].src="img/contents/tvcmbtn_ov.gif";

function over(no,id) {
document.images[id].src = img[no].src;
}


