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


var theImagesa = new Array() 
theImagesa[0] = '/photos/thumb/0001.jpg'
theImagesa[1] = '/photos/thumb/0002.jpg'
theImagesa[2] = '/photos/thumb/0003.jpg'
theImagesa[3] = '/photos/thumb/0004.jpg'
theImagesa[4] = '/photos/thumb/0005.jpg'
theImagesa[5] = '/photos/thumb/0006.jpg'
theImagesa[6] = '/photos/thumb/0007.jpg'
theImagesa[7] = '/photos/thumb/0008.jpg'
theImagesa[8] = '/photos/thumb/0009.jpg'
theImagesa[9] = '/photos/thumb/0010.jpg'
theImagesa[10] = '/photos/thumb/0011.jpg'
theImagesa[11] = '/photos/thumb/0012.jpg'
theImagesa[12] = '/photos/thumb/0013.jpg'
theImagesa[13] = '/photos/thumb/0014.jpg'

var j = 0
var p = theImagesa.length;

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

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