// Set up the image files to be used.
var theImages1 = 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!



theImages1[0] ='random/randomimg1_01.jpg'
theImages1[1] ='random/randomimg1_02.jpg'
theImages1[2] ='random/randomimg1_03.jpg'
theImages1[3] ='random/randomimg1_04.jpg'


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

var j = 0
var p = theImages1.length;

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

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

// Set up the image files to be used.
var theImages2 = 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!

theImages2[0] ='random/randomimg2_01.jpg'
theImages2[1] ='random/randomimg2_02.jpg'
theImages2[2] ='random/randomimg2_03.jpg'
theImages2[3] ='random/randomimg2_04.jpg'

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

var j = 0
var p = theImages2.length;

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

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

// Set up the image files to be used.
var theImages3 = 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!

theImages3[0] ='random/randomimg3_01.jpg'
theImages3[1] ='random/randomimg3_02.jpg'
theImages3[2] ='random/randomimg3_03.jpg'
theImages3[3] ='random/randomimg3_04.jpg'


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

var j = 0
var p = theImages3.length;

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

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


// Set up the image files to be used.
var theImages4 = 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!

theImages4[0] ='random/randomimg4_01.jpg'
theImages4[1] ='random/randomimg4_02.jpg'
theImages4[2] ='random/randomimg4_03.jpg'
theImages4[3] ='random/randomimg4_04.jpg'


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

var j = 0
var p = theImages4.length;

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

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


function Go(){return}