<!--
// ==============================================
// 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] = 'http://www.etherdrift.net/randoms/100.jpg'
theImages[1] = 'http://www.etherdrift.net/randoms/200.jpg'
theImages[2] = 'http://www.etherdrift.net/randoms/300.jpg'
theImages[3] = 'http://www.etherdrift.net/randoms/400.jpg'
theImages[4] = 'http://www.etherdrift.net/randoms/500.jpg'
theImages[5] = 'http://www.etherdrift.net/randoms/600.jpg'
theImages[6] = 'http://www.etherdrift.net/randoms/700.jpg'
theImages[7] = 'http://www.etherdrift.net/randoms/800.jpg'
theImages[8] = 'http://www.etherdrift.net/randoms/900.jpg'
theImages[9] = 'http://www.etherdrift.net/randoms/900.jpg'
theImages[10] = 'http://www.etherdrift.net/randoms/1000.jpg'
theImages[11] = 'http://www.etherdrift.net/randoms/1100.jpg'
theImages[12] = 'http://www.etherdrift.net/randoms/1200.jpg'
theImages[13] = 'http://www.etherdrift.net/randoms/1300.jpg'
theImages[14] = 'http://www.etherdrift.net/randoms/1400.jpg'
theImages[15] = 'http://www.etherdrift.net/randoms/1500.jpg'
theImages[16] = 'http://www.etherdrift.net/randoms/2600.jpg'
theImages[17] = 'http://www.etherdrift.net/randoms/2700.jpg'
theImages[18] = 'http://www.etherdrift.net/randoms/2800.jpg'
theImages[19] = 'http://www.etherdrift.net/randoms/2900.jpg'
theImages[20] = 'http://www.etherdrift.net/randoms/2000.jpg'
theImages[21] = 'http://www.etherdrift.net/randoms/2100.jpg'
theImages[22] = 'http://www.etherdrift.net/randoms/2200.jpg'
theImages[23] = 'http://www.etherdrift.net/randoms/2300.jpg'
theImages[24] = 'http://www.etherdrift.net/randoms/2400.jpg'
theImages[25] = 'http://www.etherdrift.net/randoms/2500.jpg'
theImages[26] = 'http://www.etherdrift.net/randoms/1600.jpg'
theImages[27] = 'http://www.etherdrift.net/randoms/1700.jpg'
theImages[28] = 'http://www.etherdrift.net/randoms/1800.jpg'
theImages[29] = 'http://www.etherdrift.net/randoms/1900.jpg'
theImages[30] = 'http://www.etherdrift.net/randoms/3000.jpg'
theImages[31] = 'http://www.etherdrift.net/randoms/3100.jpg'
theImages[32] = 'http://www.etherdrift.net/randoms/3200.jpg'
theImages[33] = 'http://www.etherdrift.net/randoms/3300.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]+'" border="1">');
}

//-->