<!-- random image
// 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.

theImages[0] = 'images/D-Day/D-Day3_small.jpg'
theImages[1] = 'images/Enola_Gay/Enola_Gay_small.jpg'
theImages[2] = 'images/Love_and_Hate/Love_and_Hate_blue_small.jpg'
theImages[3] = 'images/Love_and_Hate/Love_and_Hate_yellow_small.jpg'
theImages[4] = 'images/Masters_of_War/Masters_of_War_small.jpg'
theImages[5] = 'images/Project360/Project360_small.jpg'
theImages[6] = 'images/the_breaks/the_breaks_orange_small.jpg'
theImages[7] = 'images/Subterranean_Homesick_Blues/Subterranean_Homesick_Red.jpg'
theImages[8] = 'images/the_breaks/the_breaks_blue_small.jpg'
theImages[9] = 'images/1992/1992_boy.jpg'
theImages[10] = 'images/1992/1992_girl.jpg'
theImages[11] = 'images/life_drawing/life_drawing2_green_small.jpg'
theImages[12] = 'images/life_drawing/life_drawing1_brown_small.jpg'
theImages[13] = 'images/a25_print_orig.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));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'"text-align="center">');
}
// random images for about.htm //
var squareImage = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

squareImage[0] = 'images/random/bristolbell_400.jpg'
squareImage[1] = 'images/random/the_breaks_orange_detail2.jpg'
squareImage[2] = 'images/random/life_drawing1_brown.jpg'
squareImage[3] = 'images/random/Project360_small.jpg'
squareImage[4] = 'images/random/thebreaks_blue.jpg'
squareImage[5] = 'images/random/masters_of_war_detail.jpg'
squareImage[6] = 'images/random/wood_type.jpg'
squareImage[7] = 'images/random/spike_print_studio4.jpg'
squareImage[8] = 'images/random/bristol_bell2.jpg'
squareImage[9] = 'images/random/spike_print_studio.jpg'


// do not edit anything below this line

var j = 0
var p = squareImage.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 showImage2(){
document.write('<img src="'+squareImage[whichImage]+'"text-align="center">');
}