<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = '../images/2009_fight_night_11.jpg'
theImages[1] = '../images/alipri.jpg'
theImages[2] = '../images/alitwo.jpg'
theImages[3] = '../images/wednt.gif'
theImages[4] = '../images/butter.jpg'
theImages[5] = '../images/collin.jpg'
theImages[6] = '../images/johpat.jpg'
theImages[7] = '../images/lamott.jpg'
theImages[8] = '../images/louduv.jpg'
theImages[9] = '../images/sugbie.jpg'
theImages[10] = '../images/fn1998.jpg'
theImages[11] = '../images/fn2001.jpg'
theImages[12] = '../images/2006/photo_2005_bsiegfried_avalletta.jpg'
theImages[13] = '../images/2006/photo_2005_bsiegfried_eholyfield.jpg'
theImages[14] = '../images/2006/photo_2005_mbuffer2.jpg'
theImages[15] = '../images/2006/photo_2005_bsiegfried_rbowe_eholyfield.jpg'
theImages[16] = '../images/2006/photo_2005_drodman3.jpg'
theImages[17] = '../images/2006/photo_2005_mbuffer_rbowe_bsiegfried_avalletta_eholyfield.jpg'
theImages[18] = '../images/history_group1.jpg'

var theCaptions = new Array()
theCaptions[0] = 'Fight Night XVIII, May 7th 2009'
theCaptions[1] = 'Muhammed Ali is flanked by Ray Siegfried (at left) and Henry Primeaux during Fight Night II.'
theCaptions[2] = 'Muhammed Ali was the special guest for the first two Fight Nights.'
theCaptions[3] = 'George Wendt of Cheers fame with Ray, Terrell, and Hastings Siegfried.'
theCaptions[4] = 'Boxing announcer Mark Biero and Eric (Butterbean) Esch at Fight Night VI.'
theCaptions[5] = 'Four-time champion Kathy (Wildcat) Collins and Ray Siegfried at Fight Night IX.'
theCaptions[6] = 'Famed heavyweights Ingemar Johansson and Floyd Patterson at Fight Night V.'
theCaptions[7] = 'Ray Siegfried and Jake (The Raging Bull) LaMotta at Fight Night IX.'
theCaptions[8] = 'Lou Duva (far left) receives the first Tulsa Charity Fight Night Lifetime Achievement Award at Fight Night XI.'
theCaptions[9] = 'Boxing writer Bert Sugar (at left) and announcer Mark Biero at Fight Night VIII.'
theCaptions[10] = 'Action at Fight Night VII.'
theCaptions[11] = 'Luminaries at Fight Night X included Joe Frazier, Larry Holmes, Ken Norton and a host of other stars.'
theCaptions[12] = 'Bailey Siegfried with Model/Actress Amber Valletta'
theCaptions[13] = 'Bailey Siegfried and Evander Holyfield at Fight Night XIV'
theCaptions[14] = 'Ring Announcer Michael Buffer at Fight Night XIV'
theCaptions[15] = 'Bailey Siegfried with Riddick Bowe and Evander Holyfield'
theCaptions[16] = 'Former NBA Star Dennis Rodman at Fight Night XIV'
theCaptions[17] = '(left to right)Michael Buffer, Riddick Bowe, Bailey Siegfried, Amber Valletta and Evander Holyfield at Fight Night XIV'
theCaptions[18] = 'Fight Night XVII'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
document.write('<blockquote class="photoText">'+theCaptions[whichImage]+'</blockquote>');
}

//  End -->
