<!--タイトル画像変更スクリプト-->
<!--
	function myrandom(max) {
		var v = max * Math.random();
		
		if (v == 0.0){ v = 1; }
		else { v = Math.ceil(v); }
		
		return v;
	}
	
	function writeImage(n) {
		var i = myrandom(n) - 1;
		var h = Math.floor(i/100);
		var t = Math.floor(i/10) % 10;
		var o = i % 10;
		
		document.write("<IMG SRC=\"img/gradtrip_after/gta" + h + t + o + ".jpg\" width=300 height=98 border=1>");
	}
// -->
<!--タイトル画像変更スクリプトここまで-->
