// ランダムに画像を表示する
jmp = new Array();
img = new Array();
// ジャンプ先のアドレス(数字は画像と対応)
jmp[0] = "http://shop.dlcs.jp/?pid=23342523";
jmp[1] = "http://shop.dlcs.jp/?pid=23342519";
jmp[2] = "http://shop.dlcs.jp/?pid=23145588";
jmp[3] = "http://shop.dlcs.jp/?pid=24157141";
jmp[4] = "http://shop.dlcs.jp/?pid=24165167";
jmp[5] = "http://shop.dlcs.jp/?pid=24301921";
jmp[6] = "http://shop.dlcs.jp/?pid=23979305";
jmp[7] = "http://shop.dlcs.jp/?pid=24494888";
jmp[8] = "http://shop.dlcs.jp/?pid=24526373";
jmp[9] = "http://shop.dlcs.jp/?pid=24526373";
jmp[10] = "http://shop.dlcs.jp/?pid=24359721";
// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "http://dlcs.jp/wp-content/themes/dlcs/js/random4/img/01.jpg";
img[1] = "http://dlcs.jp/wp-content/themes/dlcs/js/random4/img/02.jpg";
img[2] = "http://dlcs.jp/wp-content/themes/dlcs/js/random4/img/03.jpg";
img[3] = "http://dlcs.jp/wp-content/themes/dlcs/js/random4/img/04.jpg";
img[4] = "http://dlcs.jp/wp-content/themes/dlcs/js/random4/img/05.jpg";
img[5] = "http://dlcs.jp/wp-content/themes/dlcs/js/random4/img/06.jpg";
img[6] = "http://dlcs.jp/wp-content/themes/dlcs/js/random4/img/07.jpg";
img[7] = "http://dlcs.jp/wp-content/themes/dlcs/js/random4/img/08.jpg";
img[8] = "http://dlcs.jp/wp-content/themes/dlcs/js/random4/img/09.jpg";
img[9] = "http://dlcs.jp/wp-content/themes/dlcs/js/random4/img/10.jpg";
img[10] = "http://dlcs.jp/wp-content/themes/dlcs/js/random4/img/11.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>");
