<!--
// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================

// Set up the image files to be used.
var theEmages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theEmages[x] index!

theEmages[0] = 'images/osher.jpg'
theEmages[1] = 'images/osher2.jpg'
theEmages[2] = 'images/osher.jpg'
theEmages[3] = 'images/osher4.jpg'
theEmages[4] = 'images/osher6.jpg'
theEmages[5] = 'images/osher7.jpg'
theEmages[6] = 'images/osher8.jpg'
theEmages[7] = 'images/osher9.jpg'
theEmages[8] = 'images/osher10.jpg'
theEmages[9] = 'images/osher11.jpg'
theEmages[10] = 'images/osher12.jpg'
theEmages[11] = 'images/osher13.jpg'
theEmages[12] = 'images/osher14.jpg'

// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theEmages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theEmages[i]
}

var whichEmage = Math.round(Math.random()*(p-1));
function showEmage(){
document.write('<img src="'+theEmages[whichEmage]+'">');
}

//-->