function randomImg1()
{
	theURL = new Array();
	ImageCount = 3;		//　画像の最大枚数
	num = Math.floor(Math.random() * ImageCount);
	document.write("<IMG SRC='./image/"+num+".jpg' WIDTH='732' HEIGHT='250'>");
}