
//randObjects01

var randObjects01=[
	'<img src="common/images/ind_mimg01.jpg" alt="Are you ready?" width="696" height="465" />', // 01
	'<img src="common/images/ind_mimg02.jpg" alt="Are you ready?" width="696" height="465" />', // 02
	'<img src="common/images/ind_mimg03.jpg" alt="Are you ready?" width="696" height="465" />', // 03
	'<img src="common/images/ind_mimg04.jpg" alt="Are you ready?" width="696" height="465" />', // 04
	'<img src="common/images/ind_mimg05.jpg" alt="Are you ready?" width="696" height="465" />'  // 05
];
function randWrite01() {
	var rr = parseInt(Math.random() * randObjects01.length);
	document.write(randObjects01.slice(rr,rr+1)[0]);
	randObjects01.splice(rr,1);
}


