// =====================================
// 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] = 'images/pagephoto01.jpg'
theImagesa[1] = 'images/pagephoto02.jpg'
theImagesa[2] = 'images/pagephoto03.jpg'
theImagesa[3] = 'images/pagephoto04.jpg'
theImagesa[4] = 'images/pagephoto05.jpg'
theImagesa[5] = 'images/pagephoto06.jpg'
theImagesa[6] = 'images/pagephoto07.jpg'
theImagesa[7] = 'images/pagephoto08.jpg'
theImagesa[8] = 'images/pagephoto09.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]+'">');
}
