<!--
// ランダムに画像を表示する
img = new Array();
img[0] = "http://silby.pupu.jp/photo-dog/d1.jpg";
img[1] = "http://silby.pupu.jp/photo-dog/d2.jpg";
img[2] = "http://silby.pupu.jp/photo-dog/d3.jpg";
img[3] = "http://silby.pupu.jp/photo-dog/d4.jpg";
img[4] = "http://silby.pupu.jp/photo-dog/d5.jpg";
img[5] = "http://silby.pupu.jp/photo-dog/d6.jpg";
img[6] = "http://silby.pupu.jp/photo-dog/d7.jpg";
img[7] = "http://silby.pupu.jp/photo-dog/d8.jpg";
img[8] = "http://silby.pupu.jp/photo-dog/d9.jpg";
img[9] = "http://silby.pupu.jp/photo-dog/d10.jpg";
img[10] = "http://silby.pupu.jp/photo-dog/d11.jpg";
img[11] = "http://silby.pupu.jp/photo-dog/d12.jpg";
img[12] = "http://silby.pupu.jp/photo-dog/d13.jpg";
img[13] = "http://silby.pupu.jp/photo-dog/d14.jpg";
img[14] = "http://silby.pupu.jp/photo-dog/d15.jpg";
img[15] = "http://silby.pupu.jp/photo-dog/d16.jpg";
img[16] = "http://silby.pupu.jp/photo-dog/d17.jpg";
img[17] = "http://silby.pupu.jp/photo-dog/d18.jpg";
img[18] = "http://silby.pupu.jp/photo-dog/d19.jpg";
img[19] = "http://silby.pupu.jp/photo-dog/d20.jpg";
n = Math.floor(Math.random()*img.length);
document.write("<img src='"+img[n]+"' border='0'>");
//-->