<!--

//トップページに表示する画像の記述場所//

//※画像と同じファイル名を記述してください。
//※画像と同じ数だけ用意してください。

var images = new Array(
					   
	'<img src="/assets/templates/std/img-top/001.jpg" style="width: 240px;height: 160px;">',
	'<img src="/assets/templates/std/img-top/002.jpg" style="width: 240px;height: 160px;">',
	'<img src="/assets/templates/std/img-top/003.jpg" style="width: 240px;height: 160px;">',
	'<img src="/assets/templates/std/img-top/004.jpg" style="width: 240px;height: 160px;">',
	'<img src="/assets/templates/std/img-top/005.jpg" style="width: 240px;height: 160px;">',
	'<img src="/assets/templates/std/img-top/006.jpg" style="width: 240px;height: 160px;">',
	'<img src="/assets/templates/std/img-top/007.jpg" style="width: 240px;height: 160px;">',
	'<img src="/assets/templates/std/img-top/008.jpg" style="width: 240px;height: 160px;">',
	'<img src="/assets/templates/std/img-top/009.jpg" style="width: 240px;height: 160px;">',
	'<img src="/assets/templates/std/img-top/010.jpg" style="width: 240px;height: 160px;">',
	'<img src="/assets/templates/std/img-top/011.jpg" style="width: 240px;height: 160px;">',
	'<img src="/assets/templates/std/img-top/012.jpg" style="width: 240px;height: 160px;">',
	'<img src="/assets/templates/std/img-top/013.jpg" style="width: 240px;height: 160px;">',
	'<img src="/assets/templates/std/img-top/014.jpg" style="width: 240px;height: 160px;">'
	
	);













//以下の記述は変更しないでください。
var figure = images.length;

for (i=0; i<100; i++) //　100はシャッフルする回数
{
	n1 = Math.floor(Math.random() * figure);
	n2 = Math.floor(Math.random() * figure);
	n = images[n1];
	images[n1] = images[n2];
	images[n2] = n;
}

function putimage(cnt){
	document.write(images[cnt]);
}



//-->

