// JavaScript Document
<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'http://farm3.static.flickr.com/2672/4013335624_4c324ab11c.jpg'
theImages[1] = 'http://farm3.static.flickr.com/2573/3981610634_152a241f05.jpg'
theImages[2] = 'http://farm3.static.flickr.com/2177/3626695407_a4c3fc3273.jpg'
theImages[3] = 'http://farm4.static.flickr.com/3600/3518404513_ba4959bcd8.jpg'
theImages[4] = 'http://farm4.static.flickr.com/3338/3518403009_da295d6344.jpg'
theImages[5] = 'http://farm4.static.flickr.com/3358/3422745714_933e9fef0c.jpg'
theImages[6] = 'http://farm4.static.flickr.com/3309/3421936021_d16d617dcc.jpg'
theImages[7] = 'http://farm4.static.flickr.com/3465/3178839916_349f134583.jpg'
theImages[8] = 'http://farm4.static.flickr.com/3519/3178001763_63d4caebc1.jpg'
theImages[9] = 'http://farm4.static.flickr.com/3304/3177905185_b28f27928c.jpg'
theImages[10] = 'http://farm2.static.flickr.com/1108/3168584167_971fb514aa.jpg'
theImages[11] = 'http://farm2.static.flickr.com/1024/3175588126_d26500b0ff.jpg'
theImages[12] = 'http://farm2.static.flickr.com/1220/3174755639_600f1ea6cf.jpg'


// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

//  End -->