
<!--


// Set up the image files to be used.
var theImages2 = new Array()
var theImagesAlt2 = 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!

theImages2[0] = 'images/rotate/headers/1.jpg'
theImages2[1] = 'images/rotate/headers/2.jpg'
theImages2[2] = 'images/rotate/headers/3.jpg'
theImages2[3] = 'images/rotate/headers/4.jpg'
theImages2[4] = 'images/rotate/headers/5.jpg'
theImages2[5] = 'images/rotate/headers/6.jpg'



theImagesAlt2[0] = 'Community Foundation of the Eastern Shore'
theImagesAlt2[1] = 'Community Foundation of the Eastern Shore'
theImagesAlt2[2] = 'Community Foundation of the Eastern Shore'
theImagesAlt2[3] = 'Community Foundation of the Eastern Shore'
theImagesAlt2[4] = 'Community Foundation of the Eastern Shore'
theImagesAlt2[5] = 'Community Foundation of the Eastern Shore'

// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages2.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages2[i]
}

var whichImage2 = Math.round(Math.random()*(p-1));
function showImage2(){
document.write('<img src="'+theImages2[whichImage2]+'" alt="'+theImagesAlt2[whichImage2]+'">');
}

//-->
