


//RANDOM ATHLETE WITH QUOTE// Set up the image files to be used.
var AthleteWithoutQuote = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the athleteandquaote[x] index!

AthleteWithoutQuote[0] = 'athletes/lidstrom_sptlght_noquote.gif'
AthleteWithoutQuote[1] = 'athletes/thabeet_sptlght_noquote.gif'
AthleteWithoutQuote[2] = 'athletes/thomas_sptlght_noquote.gif'
AthleteWithoutQuote[3] = 'athletes/cook_sptlght_noquote.gif'
AthleteWithoutQuote[4] = 'athletes/carter_sptlght_noquote.gif'
AthleteWithoutQuote[5] = 'athletes/langhorn_sptlght_noquote.gif'
AthleteWithoutQuote[6] = 'athletes/posada_sptlght_noquote.gif'
AthleteWithoutQuote[7] = 'athletes/brees_sptlght_noquote.gif'
//AthleteWithoutQuote[8] = 'athletes/jacobs_sptlght_noquote.gif'


var j = 0
var p = AthleteWithoutQuote.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = AthleteWithoutQuote[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showAthleteWithoutQuote(){
document.write('<img src="'+AthleteWithoutQuote[whichImage]+'">');
}

