<!--
function randomImg()
{
	theURL = new Array();
	theURL[0] = " ";
	theURL[1] = " ";
	theURL[2] = " ";
	ImageCount = 3;		//　画像の最大枚数
	num = Math.floor(Math.random() * ImageCount);
	document.write("<A HREF='"+theURL[num]+"'>");
	document.write("<IMG SRC='./img/randamimg/"+num+".jpg' BORDER='0' WIDTH='760' HEIGHT='250'></A>");
}
// -->