<!-- Begin Home Page -- don't change the swap_images path because the index file calls on it from the root directory
// Set up the image files to be used.
var theImages17 = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages17[0] = 'swap_images/about-six.jpg'
theImages17[1] = 'swap_images/about-three.jpg'
theImages17[2] = 'swap_images/about-five.jpg'
theImages17[3] = 'swap_images/about-one.jpg'
theImages17[4] = 'swap_images/about-two.jpg'


// do not edit anything below this line

var j = 0
var p = theImages17.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages17[i]
}
var whichImage17 = Math.round(Math.random()*(p-1));
function showImage17(){
document.write('<img src="'+theImages17[whichImage17]+'">');
}
//  End -->


<!-- Begin Contact Page -- don't change the swap_images path because the contact file calls on it from the root directory
// Set up the image files to be used.
var theImages18 = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages18[0] = 'swap_images/contact-five.jpg'
theImages18[1] = 'swap_images/contact-three.jpg'
theImages18[2] = 'swap_images/contact-four.jpg'
theImages18[3] = 'swap_images/contact-one.jpg'
theImages18[4] = 'swap_images/contact-two.jpg'


// do not edit anything below this line

var j = 0
var p = theImages18.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages18[i]
}
var whichImage18 = Math.round(Math.random()*(p-1));
function showImage18(){
document.write('<img src="'+theImages18[whichImage18]+'">');
}
//  End -->
