// 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] = '../Images/Random/01-hp.jpg'
theImages[1] = '../Images/Random/02-hp.jpg'
theImages[2] = '../Images/Random/03-hp.jpg'
theImages[3] = '../Images/Random/04-hp.jpg'
theImages[4] = '../Images/Random/05-hp.jpg'
theImages[5] = '../Images/Random/06-hp.jpg'
theImages[6] = '../Images/Random/07-hp.jpg'
theImages[7] = '../Images/Random/08-hp.jpg'
theImages[8] = '../Images/Random/09-hp.jpg'
theImages[9] = '../Images/Random/10-hp.jpg'
theImages[10] = '../Images/Random/11-hp.jpg'
theImages[11] = '../Images/Random/12-hp.jpg'
theImages[12] = '../Images/Random/13-hp.jpg'
theImages[13] = '../Images/Random/14-hp.jpg'
theImages[14] = '../Images/Random/15-hp.jpg'
theImages[15] = '../Images/Random/16-hp.jpg'
theImages[16] = '../Images/Random/17-hp.jpg'
theImages[17] = '../Images/Random/18-hp.jpg'
theImages[18] = '../Images/Random/19-hp.jpg'
theImages[19] = '../Images/Random/20-hp.jpg'
theImages[20] = '../Images/Random/21-hp.jpg'
theImages[21] = '../Images/Random/22-hp.jpg'
theImages[22] = '../Images/Random/23-hp.jpg'


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 class="floatright" border="0" alt="Home page image" src="'+theImages[whichImage]+'">');
}