
// DrawRandamImage.js

var img = new Array(
	'<img src="/themes/main/images/top/img_keyvisual_001.jpg" width="940" height="300" alt="" />','<img src="/themes/main/images/top/img_keyvisual_002.jpg" width="940" height="300" alt="" />','<img src="/themes/main/images/top/img_keyvisual_003.jpg" width="940" height="300" alt="" />','<img src="/themes/main/images/top/img_keyvisual_004.jpg" width="940" height="300" alt="" />','<img src="/themes/main/images/top/img_keyvisual_005.jpg" width="940" height="300" alt="" />','<img src="/themes/main/images/top/img_keyvisual_006.jpg" width="940" height="300" alt="" />','<img src="/themes/main/images/top/img_keyvisual_007.jpg" width="940" height="300" alt="" />','<img src="/themes/main/images/top/img_keyvisual_008.jpg" width="940" height="300" alt="" />','<img src="/themes/main/images/top/img_keyvisual_009.jpg" width="940" height="300" alt="" />','<img src="/themes/main/images/top/img_keyvisual_010.jpg" width="940" height="300" alt="" />'
);

function drawRandamImage(){
	var amount = img.length;
	no = Math.floor(Math.random() * amount);
	document.write(img[no]);
}

