/*　INDEXのキャッチをランダムに表示　*/
function randomCatches(){
	
	n = Math.floor( 1 + Math.random() * 24 );
	
	document.write('<img src="img/trc/trc' + n + '.gif" width = "250" height="260" alt="catch" />');
}
