// ランダムに画像を表示する
jmp = new Array();
img = new Array();
// ジャンプ先のアドレス(数字は画像と対応)
jmp[0] = "http://shop.dlcs.jp/?pid=23607506";
jmp[1] = "http://shop.dlcs.jp/?pid=23607518";
jmp[2] = "http://shop.dlcs.jp/?pid=24008031";
// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "http://dlcs.jp/wp-content/themes/dlcs/js/random11/img/01.jpg";
img[1] = "http://dlcs.jp/wp-content/themes/dlcs/js/random11/img/02.jpg";
img[2] = "http://dlcs.jp/wp-content/themes/dlcs/js/random11/img/03.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>");
