// JavaScript Document

jmp = new Array();
img = new Array();

jmp[0] = "gallery/colour/index02.html";
jmp[1] = "gallery/colour/index02.html";
jmp[2] = "gallery/colour/index02.html";
jmp[3] = "gallery/colour/index02.html";
jmp[4] = "gallery/mono/index02.html";
jmp[5] = "gallery/mono/index02.html";
jmp[6] = "gallery/mono/index02.html";
jmp[7] = "gallery/archtctr/index.html";
jmp[8] = "gallery/archtctr/index.html";
jmp[9] = "gallery/archtctr/index.html";

img[0] = "images_top/image_top00.jpg";
img[1] = "images_top/image_top01.jpg";
img[2] = "images_top/image_top02.jpg";
img[3] = "images_top/image_top03.jpg";
img[4] = "images_top/image_top04.jpg";
img[5] = "images_top/image_top05.jpg";
img[6] = "images_top/image_top06.jpg";
img[7] = "images_top/image_top07.jpg";
img[8] = "images_top/image_top08.jpg";
img[9] = "images_top/image_top09.jpg";

n = Math.floor(Math.random()*jmp.length);
document.write("<a href='"+jmp[n]+"'>");
document.write("<img src='"+img[n]+"' width='850' hight='250' title='佐藤嗣の「フォトギャラリー」' border='0'>");
document.write("</a>");

