<!--
// ランダム画像表示
jmp = new Array();
img = new Array();
// ジャンプ先URL
jmp[0] = "http://www.reach-research.com/inquiry/index.html";
jmp[1] = "http://www.reach-research.com/wakaresase/psychology.html";
jmp[2] = "http://www.reach-research.com/price/trial.html";
jmp[3] = "http://www.reach-research.com/wakaresase/index.html";
jmp[4] = "http://www.reach-research.com/wakaretai/index.html";
// 画像URL
img[0] = "../img/img0.jpg";
img[1] = "../img/img1.jpg";
img[2] = "../img/img2.jpg";
img[3] = "../img/img3.jpg";
img[4] = "../img/img4.jpg";
n = Math.floor(Math.random()*jmp.length);
document.write("<a href='"+jmp[n]+"'>");
document.write("<img src='"+img[n]+"' border='0'>");
document.write("</a>");
//-->

