//index_photo.js

img = new Array();
img[0] = "img/index_photo/00.jpg";
img[1] = "img/index_photo/01.jpg";
img[2] = "img/index_photo/02.jpg";
img[3] = "img/index_photo/03.jpg";
img[4] = "img/index_photo/04.jpg";
n = Math.floor(Math.random()*img.length);
document.write("<img src='"+img[n]+"' border='0'>");