// ランダムに画像を表示する
	img = new Array();

// 画像のアドレス
	img[0] = "./home/img/00.png";
	img[1] = "./home/img/01.png";
	img[2] = "./home/img/02.png";
	img[3] = "./home/img/03.png";

// スタイルシートのＩＤ
	sid = "mainbody";

n = Math.floor(Math.random()*img.length);

// 本文の出力
	document.write("<div id=\"" + sid + "\" style=\"background-color: transparent; background-image: url(\'" + img[n] + "\'); background-repeat: no-repeat; background-attachment: scroll; background-position: center center;\">");
