// JavaScript Document温泉ランダムjmp = new Array();img = new Array();// ジャンプ先のアドレス(数字は画像と対応)jmp[0] = "http://onsen.free-cm.com/spa/070201.html";jmp[1] = "http://onsen.free-cm.com/spa/070207.html";jmp[2] = "http://onsen.free-cm.com/spa/070208.html";jmp[3] = "http://onsen.free-cm.com/spa/070215.html";jmp[4] = "http://onsen.free-cm.com/spa/070216.html";jmp[5] = "http://onsen.free-cm.com/spa/070221.html";jmp[6] = "http://onsen.free-cm.com/spa/070222.html";jmp[7] = "http://onsen.free-cm.com/spa/070228.html";jmp[8] = "http://onsen.free-cm.com/spa/070302.html";jmp[9] = "http://onsen.free-cm.com/spa/070306.html";jmp[10] = "http://onsen.free-cm.com/spa/070309.html";jmp[11] = "http://onsen.free-cm.com/spa/070319.html";jmp[12] = "http://onsen.free-cm.com/spa/070320.html";jmp[13] = "http://onsen.free-cm.com/spa/070326.html";jmp[14] = "http://onsen.free-cm.com/spa/070330.html";// 画像のアドレス(数字はジャンプ先のアドレスと対応)img[0] = "http://onsen.free-cm.com/spa/070201/150px.jpg";img[1] = "http://onsen.free-cm.com/spa/070207/150px.jpg";img[2] = "http://onsen.free-cm.com/spa/070208/150px.jpg";img[3] = "http://onsen.free-cm.com/spa/070215/150px.jpg";img[4] = "http://onsen.free-cm.com/spa/070216/150px.jpg";img[5] = "http://onsen.free-cm.com/spa/070221/150px.jpg";img[6] = "http://onsen.free-cm.com/spa/070222/150px.jpg";img[7] = "http://onsen.free-cm.com/spa/070228/150px.jpg";img[8] = "http://onsen.free-cm.com/spa/070302/150px.jpg";img[9] = "http://onsen.free-cm.com/spa/070306/150px.jpg";img[10] = "http://onsen.free-cm.com/spa/070309/150px.jpg";img[11] = "http://onsen.free-cm.com/spa/070319/150px.jpg";img[12] = "http://onsen.free-cm.com/spa/070320/150px.jpg";img[13] = "http://onsen.free-cm.com/spa/070326/150px.jpg";img[14] = "http://onsen.free-cm.com/spa/070330/150px.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>");
