<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
var theImagesTL = new Array() // do not change this
var theImagesBL = new Array() // do not change this
var theImagesOffice = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'images/home/main1.jpg'
theImages[1] = 'images/home/main2.jpg'
theImages[2] = 'images/home/main3.jpg'

theImagesTL[0] = 'images/home/Message1.jpg'
theImagesTL[1] = 'images/home/Message2.jpg'
theImagesTL[2] = 'images/home/Message3.jpg'

theImagesBL[0] = 'images/home/SIS1.jpg'
theImagesBL[1] = 'images/home/SIS2.jpg'
theImagesBL[2] = 'images/home/SIS3.jpg'

theImagesOffice[0] = '../images/office/SISOffice1.jpg'
theImagesOffice[1] = '../images/office/SISOffice2.jpg'
theImagesOffice[2] = '../images/office/SISOffice3.jpg'
theImagesOffice[3] = '../images/office/SISOffice4.jpg'
theImagesOffice[4] = '../images/office/SISOffice5.jpg'
theImagesOffice[5] = '../images/office/SISOffice6.jpg'
theImagesOffice[6] = '../images/office/SISOffice7.jpg'
theImagesOffice[7] = '../images/office/SISOffice8.jpg'
theImagesOffice[8] = '../images/office/SISOffice9.jpg'
theImagesOffice[9] = '../images/office/SISOffice10.jpg'
theImagesOffice[10] = '../images/office/SISOffice11.jpg'
theImagesOffice[11] = '../images/office/SISOffice12.jpg'
theImagesOffice[12] = '../images/office/SISOffice13.jpg'
theImagesOffice[13] = '../images/office/SISOffice14.jpg'
theImagesOffice[14] = '../images/office/SISOffice15.jpg'
theImagesOffice[15] = '../images/office/SISOffice16.jpg'
theImagesOffice[16] = '../images/office/SISOffice17.jpg'
// do not edit 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));
var whichImageTL = Math.round(Math.random()*(p-1));
var whichImageBL = Math.round(Math.random()*(p-1));
var whichImageOffice = Math.round(Math.random()*(p-1));

function showImage(){
document.write('<img src="'+theImages[whichImage]+'" border="0">');
}

function showImageTopLeft(){
document.write('<img src="'+theImagesTL[whichImageTL]+'" border="0">');
}

function showImageBotLeft(){
document.write('<img src="'+theImagesBL[whichImageBL]+'" border="0">');
}

function showImageOffice(){
document.write('<img src="'+theImagesOffice[whichImageOffice]+'" border="0">');
}

//  End -->

