<!-- Begin
// Set up the image files to be used.
var aImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

aImages[0] = 'negatives/1998-33.jpg'
aImages[1] = 'negatives/Italy-1998-358-Amalfi_Coast.jpg'
aImages[2] = 'negatives/Italy-1998-003.jpg'
aImages[3] = 'negatives/Australia-2000-1166-purnong.jpg'
aImages[4] = 'negatives/Dsc00751.jpg'
aImages[5] = 'negatives/USA-1996-030-San_Francisco.jpg'

// do not edit anything below this line

var j = 0
var p = aImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = aImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function bshowImage(){
document.write('<img src="'+aImages[whichImage]+'">');
}
//  End -->

