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


var theImagesc = new Array() 
theImagesc[0] = 'photos2/thumb11.jpg'
theImagesc[1] = 'photos2/thumb12.jpg'
theImagesc[2] = 'photos2/thumb13.jpg'
theImagesc[3] = 'photos2/thumb14.jpg'
theImagesc[4] = 'photos2/thumb15.jpg'
theImagesc[5] = 'photos2/thumb23.jpg'
theImagesc[6] = 'photos2/thumb24.jpg'
theImagesc[7] = 'photos2/thumb25.jpg'
theImagesc[8] = 'photos2/thumb26.jpg'
theImagesc[9] = 'photos2/thumb27.jpg'



var j = 0
var p = theImagesc.length;

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

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