<!--
// ランダムに画像を表示する


	
theMain = new Array();

theMain[1] = "images/indextop_01.jpg";
theMain[2] = "images/indextop_02.jpg";
theMain[3] = "images/indextop_03.jpg";
theMain[4] = "images/indextop_04.jpg";
theMain[5] = "images/indextop_05.jpg";
theMain[6] = "images/indextop_06.jpg";
theMain[7] = "images/indextop_07.jpg";

random_num = (Math.round((Math.random()*7)+1));
if (random_num >= 1 && (random_num <= 7)) {

		document.write("<img src=\"" + theMain[random_num] + "\">");

} else {
	document.write("<img src=\"" + theMain[01] + "\">");
}


//-->


/* 古いやつ
// ランダムに画像を表示する
img = new Array();
img[0] = "images/indextop_01.jpg";
img[1] = "images/indextop_02.jpg";
img[2] = "images/indextop_03.jpg";
img[3] = "images/indextop_04.jpg";
img[4] = "images/indextop_05.jpg";
img[5] = "images/indextop_06.jpg";
img[6] = "images/indextop_07.jpg";
n = Math.floor(Math.random()*img.length);
document.write("<img src='"+img[n]+"' border='0'>");
//-->
*/