// JavaScript Document

<!--
// ==============================================
// 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] = '../random/1.jpg'
theImages[1] = '../random/2.jpg'
theImages[2] = '../random/3.jpg'
theImages[3] = '../random/4.jpg'
theImages[4] = '../random/5.jpg'
theImages[5] = '../random/6.jpg'
theImages[6] = '../random/7.jpg'
theImages[7] = '../random/8.jpg'
theImages[8] = '../random/9.jpg'
theImages[9] = '../random/10.jpg'
theImages[10] = '../random/11.jpg'
theImages[11] = '../random/12.jpg'
theImages[12] = '../random/13.jpg'
theImages[13] = '../random/14.jpg'
theImages[14] = '../random/15.jpg'
theImages[15] = '../random/16.jpg'
theImages[16] = '../random/17.jpg'
theImages[17] = '../random/18.jpg'
theImages[18] = '../random/19.jpg'
theImages[19] = '../random/20.jpg'
theImages[20] = '../random/21.jpg'
theImages[21] = '../random/22.jpg'
theImages[22] = '../random/23.jpg'
theImages[23] = '../random/24.jpg'
theImages[24] = '../random/25.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]+'">');
}

//-->
