<!-- Begin
// Set up the image files to be used.
var daImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

daImages[0] = 'negatives/Australia-2000-1166-purnong.jpg'
daImages[1] = 'negatives/USA-1996-134-Grand_Canyon_NP.jpg'
daImages[2] = 'negatives/Dsc00751.jpg'
daImages[3] = 'negatives/Australia-1995-1469-17.jpg'
daImages[4] = 'negatives/Australia-1995-1469-03.jpg'
daImages[5] = 'negatives/USA-1995-1451-05.jpg'

// do not edit anything below this line

var j = 0
var p = daImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = daImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function cshowImage(){
document.write('<img src="'+daImages[whichImage]+'">');
}
//  End -->


