function printImgTCRTOPIMG () {

	jmp = new Array();
	img = new Array();

	//リンク先指定：リンク先を下記のダブルクォーテーション内に書き入れてください
	jmp[0] = "http://teracoffee.shop-pro.jp/";

	//画像指定
	img[0] = "/image/index/image_01.gif";

	n = Math.floor(Math.random()*jmp.length);
	document.write("<a href='"+jmp[n]+"'>");
	document.write("<img src='"+img[n]+"' width='780' height='421' alt='"+"'>");
	document.write("</a>");

}
