
<!--
// ランダムに画像を表示する
jmp = new Array();
img = new Array();
// ジャンプ先のアドレス(数字は画像と対応)

jmp[0] = "http://www.e-muchtoyama.com/coupon/index.php";
jmp[1] = "http://www.e-muchtoyama.com/coupon/index.php";
jmp[2] = "http://www.e-muchtoyama.com/coupon/index.php";
jmp[3] = "http://www.e-muchtoyama.com/coupon/index.php";
jmp[4] = "http://www.e-muchtoyama.com/coupon/index.php";
// 画像のアドレス(数字はジャンプ先のアドレスと対応)

img[0] = "../img/banner/cpn01-2.gif";
img[1] = "../img/banner/cpn02-2.gif";
img[2] = "../img/banner/cpn03-2.gif";
img[3] = "../img/banner/cpn04-2.gif";
img[4] = "../img/banner/cpn05-2.gif";
n = Math.floor(Math.random()*jmp.length);
document.write("<a href='"+jmp[n]+"'>");
document.write("<img src='"+img[n]+"' border='0'>");
document.write("</a>");
//-->

