function random_image() {
	img = new Array();
	img[0] = 'img/banner/12h_2011_01.jpg';
	img[1] = 'img/banner/12h_2011_02.jpg';
	img[2] = 'img/banner/12h_2011_03.jpg';
	img[3] = 'img/banner/12h_2011_04.jpg';
	img[4] = 'img/banner/12h_2011_05.jpg';
	img[5] = 'img/banner/12h_2011_06.jpg';
	img[6] = 'img/banner/12h_2011_07.jpg';
	idx = Math.floor( Math.random() * img.length );
	document.write("<img src='" + img[idx] + "' alt='第12回 夏祭り12時間エンデューロ' title='第12回 夏祭り12時間エンデューロ 2011年7月30日' width='899' height='315' />");
}

