
// Set up the image files to be used.
var theLogos = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theLogos[0] = '/usafunds/Images/ConnectionPortal_header_photo1.jpg'
theLogos[1] = '/usafunds/Images/ConnectionPortal_header_photo2.jpg'
theLogos[2] = '/usafunds/Images/ConnectionPortal_header_photo3.jpg'

// do not edit anything below this line

var j = 0
var p = theLogos.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theLogos[i]
}



function showLogo(){
var whichImage = Math.round(Math.random()*(p-1));
document.write('<img src="'+theLogos[whichImage]+'">');
}
