// 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] = 'M1.jpg'
theImages[1] = 'M2.jpg'
theImages[2] = 'M3.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="290" height="200" alt="image" border="0">');