// ランダムに画像を表示する
	img = new Array();
	hei = new Array();
// 画像のアドレス
	img[0] = "./top/img01.jpg";
	img[1] = "./top/img02.jpg";
	img[2] = "./top/img03.jpg";
// 画像の縦サイズ(数字は画像と対応)
	hei[0] = "400px";
	hei[1] = "400px";
	hei[2] = "400px";

n = Math.floor(Math.random()*img.length);

document.write("<TABLE CELLPADDING=0 CELLSPACING=0 WIDTH=100% STYLE=" + '"' + "background-image: url('" + img[n] + "'); background-repeat: no-repeat; background-attachment: fixed; background-position: left top; height: " + hei[n] + ";" + '"' + ">");
