<!--
// ==============================================
// 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 theFact = 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!

theFact[0] = '0001_trythis_gfx/0001_trythis_fact01.gif'
theFact[1] = '0001_trythis_gfx/0001_trythis_fact02.gif'
theFact[2] = '0001_trythis_gfx/0001_trythis_fact03.gif'
theFact[3] = '0001_trythis_gfx/0001_trythis_fact04.gif'
theFact[4] = '0001_trythis_gfx/0001_trythis_fact05.gif'
theFact[5] = '0001_trythis_gfx/0001_trythis_fact06.gif'
theFact[6] = '0001_trythis_gfx/0001_trythis_fact07.gif'
theFact[7] = '0001_trythis_gfx/0001_trythis_fact08.gif'

// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theFact.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theFact[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theFact[whichImage]+'">');
}

//-->