// JavaScript Document

var imglist = new Array(
	"./img/common/idx_headline_img01.jpg",
	"./img/common/idx_headline_img02.jpg",
	"./img/common/idx_headline_img03.jpg",
	"./img/common/idx_headline_img04.jpg",
	"./img/common/idx_headline_img05.jpg",
	"./img/common/idx_headline_img06.jpg",
	"./img/common/idx_headline_img07.jpg"
	);
var selectnum = Math.floor((Math.random() * 100)) % imglist.length;
var output = "<img src=" + imglist[selectnum] + ">";
document.write(output);

