var randObjects=[
	'<img src="http://prepani.main.jp/jrc/wp/wp-content/themes/tottori/randam/001.jpg" width="100" height="100">',
	'<img src="http://prepani.main.jp/jrc/wp/wp-content/themes/tottori/randam/002.jpg" width="100" height="100">',
	'<img src="http://prepani.main.jp/jrc/wp/wp-content/themes/tottori/randam/003.jpg" width="100" height="100">',
	'<img src="http://prepani.main.jp/jrc/wp/wp-content/themes/tottori/randam/004.jpg" width="100" height="100">',
	'<img src="http://prepani.main.jp/jrc/wp/wp-content/themes/tottori/randam/005.jpg" width="100" height="100">',
	'<img src="http://prepani.main.jp/jrc/wp/wp-content/themes/tottori/randam/006.jpg" width="100" height="100">',
	'<img src="http://prepani.main.jp/jrc/wp/wp-content/themes/tottori/randam/007.jpg" width="100" height="100">',
	'<img src="http://prepani.main.jp/jrc/wp/wp-content/themes/tottori/randam/008.jpg" width="100" height="100">',
	'<img src="http://prepani.main.jp/jrc/wp/wp-content/themes/tottori/randam/009.jpg" width="100" height="100">',
	'<img src="http://prepani.main.jp/jrc/wp/wp-content/themes/tottori/randam/010.jpg" width="100" height="100">',
	'<img src="http://prepani.main.jp/jrc/wp/wp-content/themes/tottori/randam/011.jpg" width="100" height="100">'//←最後は,無し

];
function randWrite() {
	var rr = parseInt(Math.random() * randObjects.length);
	document.write(randObjects.slice(rr,rr+1)[0]);
	randObjects.splice(rr,1);
}

