
<!--
// ==============================================
// 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/april_la.jpg'
theImages[1] = 'images/april_la2.jpg'
theImages[2] = 'images/april_la3.jpg'
//theImages[3] = 'images/april_la4.jpg'
//theImages[4] = 'images/april_la5.jpg'
//theImages[5] = 'images/azlan.jpg'
//theImages[6] = 'images/azlan_huge.jpg'
//theImages[7] = 'images/big_grab.jpg'
//theImages[8] = 'images/bordercross_mike_r.jpg'
//theImages[9] = 'images/bordercross_mike_r2.jpg'
//theImages[10] = 'images/bordercross_mike_r3.jpg'
//theImages[11] = 'images/devon_smith.jpg'
//theImages[12] = 'images/devon_smith2.jpg'
//theImages[13] = 'images/joel_feenstra.jpg'
//theImages[14] = 'images/joel_feenstra2.jpg'
//theImages[15] = 'images/palek.jpg'
//theImages[16] = 'images/palek2.jpg'
//theImages[17] = 'images/palek3.jpg'
//theImages[18] = 'images/joel_feenstra6.jpg'
//theImages[19] = 'images/phoenix_View.jpg'
//theImages[20] = 'images/phoenix_View2.jpg'
//theImages[21] = 'images/roller_coaster.jpg'
//theImages[22] = 'images/ryley_h.jpg'
//theImages[23] = 'images/ryley_h2.jpg'
//theImages[24] = 'images/sheryl_williams.jpg'
//theImages[25] = 'images/sheryl_williams1.jpg'
//theImages[26] = 'images/sheryl_williams2.jpg'
//theImages[27] = 'images/sheryl_williams3.jpg'
//theImages[28] = 'images/sheryl_williams4.jpg'
//theImages[29] = 'images/sheryl_williams5.jpg'
//theImages[30] = 'images/sheryl_williams6.jpg'
//theImages[31] = 'images/sheryl_williams7.jpg'
//theImages[32] = 'images/sheryl_williams8.jpg'
//theImages[33] = 'images/sheryl_williams9.jpg'
//theImages[34] = 'images/sheryl_williams10.jpg'
//theImages[35] = 'images/sheryl_williams11.jpg'
//theImages[36] = 'images/t_bar.jpg'
//theImages[37] = 'images/t_bar2.jpg'
//theImages[38] = 'images/tom_p1.jpg'
//theImages[39] = 'images/tom_p2.jpg'
//theImages[40] = 'images/tom_p3.jpg'
//theImages[41] = 'images/margo.jpg'
//theImages[42] = 'images/tom_p5.jpg'
//theImages[43] = 'images/trevor_c1.jpg'
//theImages[44] = 'images/trevor_c2.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]+'" width="261" height="188">');
}

//-->
