﻿img = new Array();
img[0] = "images/top_pic01.jpg";
img[1] = "images/top_pic02.jpg";
img[2] = "images/top_pic03.jpg";
n = Math.floor(Math.random()*img.length);
document.write("<img src='"+img[n]+"' alt='' />");
