<!--
// ランダムに画像を表示する
jmp = new Array();
img = new Array();
// ジャンプ先のアドレス(数字は画像と対応)
jmp[0] = "http://vikura.jp/products/soupmaker.html";
jmp[1] = "/100610mc/r.html";
jmp[2] = "http://vikura.jp/100517jousuiki_r/";
jmp[3] = "http://vikura.jp/products/apparel/middle-aroma.html";
jmp[4] = "http://vikura.jp/100517jousuiki_r/";
// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "images/home/12.jpg";
img[1] = "images/home/14.jpg";
img[2] = "images/home/06.jpg";
img[3] = "images/home/11.jpg";
img[4] = "images/home/13.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>");
//-->
