// Call Random Banner

/* H O M E P A G E   B A N N E R S */

// Set up the image files to be used.
var HomepageImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

HomepageImages[0] = 'images/homepage/background/HomepageDance01.jpg'

// do not edit anything below this line

var j = 0
var p = HomepageImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = HomepageImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showHomepageImage(){
document.write('<img src="'+HomepageImages[whichImage]+'">');
}



