
<!--
// ==============================================
// 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 theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theImages[x] index!

theImages[0] = 'images/full_10a.jpg'
theImages[1] = 'images/full_10b.jpg'
theImages[2] = 'images/full_10c.jpg'
theImages[3] = 'images/full_10d.jpg'
theImages[4] = 'images/full_10e.jpg'
theImages[5] = 'images/full_10f.jpg'
theImages[6] = 'images/full_10g.jpg'
theImages[7] = 'images/full_10h.jpg'
theImages[8] = 'images/full_10i.jpg'
theImages[9] = 'images/full_10j.jpg'
theImages[10] = 'images/full_10k.jpg'
theImages[11] = 'images/full_10l.jpg'
theImages[12] = 'images/full_10m.jpg'
theImages[13] = 'images/full_10n.jpg'
theImages[14] = 'images/full_10o.jpg'
theImages[15] = 'images/full_10p.jpg'
theImages[16] = 'images/full_10q.jpg'
theImages[17] = 'images/full_10r.jpg'
theImages[18] = 'images/full_10s.jpg'
theImages[19] = 'images/full_10t.jpg'
theImages[20] = 'images/full_10u.jpg'
theImages[21] = 'images/full_10v.jpg'
theImages[22] = 'images/full_10w.jpg'
theImages[23] = 'images/full_10x.jpg'
theImages[24] = 'images/full_10y.jpg'


// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages.length;

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

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

