<!-- 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] = 'images/rdnmphotos/1'
theImages[1] = 'images/rdnmphotos/2'
theImages[2] = 'images/rdnmphotos/3'
theImages[3] = 'images/rdnmphotos/4'
theImages[4] = 'images/rdnmphotos/5'
theImages[5] = 'images/rdnmphotos/6'
theImages[6] = 'images/rdnmphotos/7'
theImages[7] = 'images/rdnmphotos/8'
theImages[8] = 'images/rdnmphotos/9'
theImages[9] = 'images/rdnmphotos/10'
theImages[10] = 'images/rdnmphotos/11'
theImages[11] = 'images/rdnmphotos/12'
theImages[12] = 'images/rdnmphotos/13'
theImages[13] = 'images/rdnmphotos/14'
theImages[14] = 'images/rdnmphotos/15'
theImages[15] = 'images/rdnmphotos/17'
theImages[16] = 'images/rdnmphotos/18'
theImages[17] = 'images/rdnmphotos/21'
theImages[18] = 'images/rdnmphotos/25'
theImages[19] = 'images/rdnmphotos/30'

// 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('<a href="'+theImages[whichImage]+'.jpg" target=_blank><img src="'+theImages[whichImage]+'.gif" hspace="16" vspace="15" border=0></a>');
}

//  End -->


