// JavaScript Document

var imgURL = ["images/top/main_image002.jpg", "images/top/main_image003.jpg"];
var n = Math.floor(Math.random() * imgURL.length);
document.write('<img src="'+imgURL[n]+'">');

