// ==============================================
// 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/0015.jpg'
theImagesb[1] = '/photos/thumb/0016.jpg'
theImagesb[2] = '/photos/thumb/0017.jpg'
theImagesb[3] = '/photos/thumb/0018.jpg'
theImagesb[4] = '/photos/thumb/0019.jpg'
theImagesb[5] = '/photos/thumb/0020.jpg'
theImagesb[6] = '/photos/thumb/0021.jpg'
theImagesb[7] = '/photos/thumb/0022.jpg'
theImagesb[8] = '/photos/thumb/0023.jpg'
theImagesb[9] = '/photos/thumb/0024.jpg'
theImagesb[10] = '/photos/thumb/0025.jpg'
theImagesb[11] = '/photos/thumb/0026.jpg'
theImagesb[12] = '/photos/thumb/0027.jpg'
theImagesb[13] = '/photos/thumb/0028.jpg'
theImagesb[14] = '/photos/thumb/0029.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]+'">');
}
