// JavaScript Document

function changeImg(){
var imglist = new Array("main.jpg","main2.jpg");
var selectnum = Math.floor((Math.random() * 100)) % imglist.length;
var output = "<img src='img/"+ imglist[selectnum] + "'>";
document.write(output);
}

