﻿window.onload = function() {
	var imgNum = 2; //写真の枚数　写真は全て数字.jpgという名前にしておいて下さい。
	var img = document.getElementById("mainimg");
	img.src = "../elements/topimg/" + Math.ceil(Math.random() * imgNum) + ".jpg";
	img.width = "570"; //写真の横幅
	img.height = "380"; //写真の縦幅
	document.close();
}
	