// Set up the image files to be used.
var RghBotImages = new Array() // do not change this
var RghBotDir = 'images/right_bottom_images/'  // change this only if image directory changes

// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the RghBotImages[x] index!

RghBotImages[0] = RghBotDir + 'image1.jpg'
RghBotImages[1] = RghBotDir + 'image2.jpg'
RghBotImages[2] = RghBotDir + 'image3.jpg'
RghBotImages[3] = RghBotDir + 'image4.jpg'
RghBotImages[4] = RghBotDir + 'image5.jpg'
RghBotImages[5] = RghBotDir + 'image6.jpg'
RghBotImages[6] = RghBotDir + 'image7.jpg'
RghBotImages[7] = RghBotDir + 'image8.jpg'
RghBotImages[8] = RghBotDir + 'image9.jpg'





// ======================================
// do not change anything below this line
// ======================================

var RBLength = RghBotImages.length;

var RBpreBuffer = new Array()
for (i = 0; i < RBLength; i++){
   RBpreBuffer[i] = new Image()
   RBpreBuffer[i].src = RghBotImages[i]
}

var whichRBImage = Math.round(Math.random()*(RBLength-1));

function showRBImage(){
document.write('<img src="'+RghBotImages[whichRBImage]+'" alt="Joe M. Turner - Atlanta Magician - Corporate Magician - Professional Speaker" border="0">');
}

