img = new Array();
img[0] = "images/main_visual_01.jpg";
img[1] = "images/main_visual_03.jpg";


function setBanner(){
	amount = img.length;
	No = Math.floor(Math.random()*amount);
	document.write("<img src='" + img[No] + "' width='598' height='272'>");
}