<!--
// ==============================================
// 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] = '../assets/images/home/left/l1.jpg'
theImages[1] = '../assets/images/home/left/l2.jpg'
theImages[2] = '../assets/images/home/left/l3.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]+'">');
}

var theMImages = 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!

theMImages[0] = '../assets/images/home/middle/m1.jpg'
theMImages[1] = '../assets/images/home/middle/m2.jpg'
theMImages[2] = '../assets/images/home/middle/m3.jpg'

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

var j = 0
var p = theMImages.length;

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

var whichMImage = Math.round(Math.random()*(p-1));
function showMImage(){
document.write('<img src="'+theMImages[whichMImage]+'" style="margin:0px 7px 0px 7px;">');
}

var theRImages = 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!

theRImages[0] = '../assets/images/home/right/r1.jpg'
theRImages[1] = '../assets/images/home/right/r2.jpg'
theRImages[2] = '../assets/images/home/right/r3.jpg'

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

var j = 0
var p = theRImages.length;

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

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

//-->
