// Set up the image files to be used.
var theImages = new Array() // do not change this
var theAlts = new Array() //do not change this
// To add more image files, continue with the
// pattern below, adding to the arrays.
// theAlts is an array that holds the ALT text
// accompanying the images
// NOTE: when putting in text for theAlts, double
// quotes and single quotes/apostrophes are special characters
// and must be treated differently.  In place of a double quote
// character you must put &quot;  In place of a single quote/apostrophe
// you must put \'  Without these substitutions, the javascript may not
// function properly.

var imagepath = '../images/';

theImages[0] = imagepath + 'bar_development.jpg'
theAlts[0] = 'Development'

theImages[1] = imagepath + 'bar_development2.jpg'
theAlts[1] = 'Development'

theImages[2] = imagepath + 'bar_development3.jpg'
theAlts[2] = 'Development'

theImages[3] = imagepath + 'bar_development4.jpg'
theAlts[3] = 'Development'

theImages[4] = imagepath + 'bar_development5.jpg'
theAlts[4] = 'Development'
// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()

var whichImage = Math.round(Math.random()*(p-1));

preBuffer = new Image();
preBuffer.src = theImages[whichImage];

function showImage(){
document.write('<img width="166" height="400" src="'+theImages[whichImage]+'" alt="' + theAlts[whichImage] + '">');
}
