 
<!--
// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================

// 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. Rememeber
// to increment the theImages[x] index!

theImages[0] = 'images/photos/2005_0113_2256_150.jpg'
theImages[1] = 'images/photos/2005_0111_2120_150.jpg'
theImages[2] = 'images/photos/2005_0107_2302_150.jpg'
theImages[3] = 'images/photos/2004_1219_2135_150.jpg'
theImages[4] = 'images/photos/2004_1114_2214_150.jpg'
theImages[5] = 'images/photos/2004_1031_2147_150.jpg'
theImages[6] = 'images/photos/2004_1017_2135_150.jpg'
theImages[7] = 'images/photos/2004_0510_1454_150.jpg'
theImages[8] = 'images/photos/2004_1002_2230_150.jpg'
theImages[9] = 'images/photos/2005_0128_2304_150.jpg'
theImages[10] = 'images/photos/2005_0130_2103_150.jpg'
theImages[11] = 'images/photos/2005_0204_2225_150.jpg'
theImages[12] = 'images/photos/2005_0205_2134_150.jpg'
theImages[13] = 'images/photos/2005_0206_2225_150.jpg'
theImages[14] = 'images/photos/2005_0208_2157_150.jpg'
theImages[15] = 'images/photos/2005_0213_2214_150.jpg'
theImages[16] = 'images/photos/2005_0226_2239_150.jpg'
theImages[17] = 'images/photos/2005_0304_2158_150.jpg'
theImages[18] = 'images/photos/2005_0313_2157_150.jpg'
theImages[19] = 'images/photos/2005_0827_2200_150.jpg'
theImages[20] = 'images/photos/2006_0104_2200_150.jpg'
theImages[21] = 'images/photos/2006_0129_2200_150.jpg'
theImages[22] = 'images/photos/2006_0130_2147_150.jpg'
theImages[23] = 'images/photos/2006_0202_2131_150.jpg'
theImages[24] = 'images/photos/2006_0416_2215_150.jpg'

// ======================================
// do not change 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]+'">');
}

//-->