// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================


var theImagesb = new Array() 
theImagesb[0] = 'photos2/thumb06.jpg'
theImagesb[1] = 'photos2/thumb07.jpg'
theImagesb[2] = 'photos2/thumb08.jpg'
theImagesb[3] = 'photos2/thumb09.jpg'
theImagesb[4] = 'photos2/thumb10.jpg'
theImagesb[5] = 'photos2/thumb19.jpg'
theImagesb[6] = 'photos2/thumb20.jpg'
theImagesb[7] = 'photos2/thumb21.jpg'
theImagesb[8] = 'photos2/thumb22.jpg'

var j = 0
var p = theImagesb.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImagesb[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImageb(){
document.write('<img src="'+theImagesb[whichImage]+'">');
}
