// JavaScript Document

// ALL IMAGE SCRIPT
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = '1.jpg'
theImages[1] = '2.jpg'
theImages[2] = '3.jpg'
theImages[3] = '4.jpg'


// do not edit anything below this line

var p = theImages.length;
var i = Math.round(Math.random()*(p-1));

document.write('<img src="'+theImages[i]+'" width="200" height="300" alt="image" border="0">');