// ==============================================
// 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] = '/photos/thumb/0005.jpg'
theImagesb[1] = '/photos/thumb/0006.jpg'
theImagesb[2] = '/photos/thumb/0007.jpg'
theImagesb[3] = '/photos/thumb/0008.jpg'
theImagesb[4] = '/photos/thumb/0017.jpg'
theImagesb[5] = '/photos/thumb/0018.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]+'">');
}
