function rnd_img() {
	// ランダムに画像を表示する
	jmp = new Array();
	img = new Array();
	// ジャンプ先のアドレス(数字は画像と対応)
	jmp[0] = "/view.rbz?cd=6475";
	jmp[1] = "./support/essay/index.html";
	jmp[2] = "http://www.pikara.jp/hikari/renewal/zuttoku/index.html";


	// 画像のアドレス(数字はジャンプ先のアドレスと対応)
	img[0] = "image/town_center_pnavi.jpg";
	img[1] = "image/town_center_03.jpg";
	img[2] = "image/town_cen_zuttok.png";


	n = Math.floor(Math.random()*jmp.length);
	document.write("<a href='"+jmp[n]+ "' target='_blank'>");
	document.write("<img src='"+img[n]+"' border='0'>");
	document.write("</a>");
}
