//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays

images = new Array(4);

images[0] = "<img src='images/november_05/P0001050.JPG'";

images[1] = "<img src='images/november_05/P0001054.JPG'";

images[2] = "<img src='images/october_05/DSC_0025.JPG'";

images[3] = "<img src='images/october_05/P0000971.JPG'";

images[4] = "<img src='images/october_05/P0001001.JPG'";

images[5] = "<img src='images/october_05/P0000972.JPG'";

images[6] = "<img src='images/Delivery trip/P0000538.JPG'";

images[7] = "<img src='images/photos/exterior/P0000423.JPG'";

images[8] = "<img src='images/november_05/P0001028.JPG'";

images[9] = "<img src='images/cori-calutta.jpg'";

index = Math.floor(Math.random() * images.length);

document.write("<DL>\n");

document.write("<DT>" + "" + images[index] + "\n");

document.write("</DL>\n");

//done