<!--
 
var xoxo = new Array(); 
// Array to hold filenames xoxo[0] = "graphic1.gif"; 
xoxo[0] = '/images/flash_ad_al_25.jpg';
xoxo[1] = '/images/flash_ad_sat.jpg';
xoxo[2] = '/images/flash_ad_sign.jpg'; 
xoxo[3] = '/images/flash_ad_al_cactus.jpg';
xoxo[4] = '/images/flash_ad_flag.jpg'; 
xoxo[5] = '/images/flash_ad_sat.jpg';
xoxo[6] = '/images/flash_ad_mt.jpg';
xoxo[7] = '/images/flash_ad_palms.jpg';
xoxo[8] = '/images/flash_ad_sign.jpg';
xoxo[9] = '/images/flash_ad_pots.jpg';
xoxo[10] = '/images/flash_ad_sat.jpg';
xoxo[11] = '/images/flash_ad_pots.jpg';
xoxo[12] = '/images/flash_ad_sat.jpg';
xoxo[13] = '/images/flash_ad_sign.jpg';
xoxo[14] = '/images/flash_ad_sunset.jpg';
xoxo[15] = '/images/flash_ad_al_spans.jpg';
xoxo[16] = '/images/flash_ad_al_church.jpg';
xoxo[17] = '/images/flash_ad_al_reflection.jpg';
xoxo[18] = '/images/flash_ad_al_flower.jpg';
xoxo[19] = '/images/flash_ad_al_cactus.jpg';
xoxo[20] = '/images/flash_ad_al_church2.jpg';
xoxo[21] = '/images/flash_ad_al_bot.jpg';
xoxo[22] = '/images/flash_ad_al_church3.jpg';
xoxo[23] = '/images/flash_ad_al_mt.jpg';
xoxo[24] = '/images/flash_ad_al_25.jpg';
xoxo[25] = '/images/flash_ad_al_adobe.jpg';
xoxo[26] = '/images/flash_ad_al_sunset.jpg';
xoxo[27] = '/images/flash_ad_sat.jpg';
xoxo[28] = '/images/flash_ad_al_bot.jpg';
xoxo[29] = '/images/flash_ad_al_church3.jpg';
xoxo[30] = '/images/flash_ad_al_mt.jpg';
xoxo[31] = '/images/flash_ad_al_25.jpg';
xoxo[32] = '/images/flash_ad_al_adobe.jpg';
xoxo[33] = '/images/flash_ad_al_sunset.jpg';
xoxo[34] = '/images/flash_ad_high_jump.jpg';
xoxo[35] = '/images/flash_ad_rice.jpg';
xoxo[36] = '/images/flash_ad_sooners.jpg';
xoxo[37] = '/images/flash_ad_minnesota.jpg';
xoxo[38] = '/images/flash_ad_hurdle.jpg';
xoxo[39] = '/images/flash_ad_basketball_NC.jpg';
xoxo[40] = '/images/flash_ad_basketball.jpg';
xoxo[41] = '/images/flash_ad_vt_baseball.jpg';
xoxo[42] = '/images/flash_ad_al_sunset.jpg';
xoxo[43] = '/images/flash_ad_navy.jpg';
xoxo[44] = '/images/flash_ad_SWIMMING.jpg';
xoxo[45] = '/images/flash_ad_mich_football.jpg';
xoxo[46] = '/images/flash_ad_texas_football.jpg';
xoxo[47] = '/images/flash_ad_vt_football.jpg';
xoxo[48] = '/images/flash_ad_pitt_vt.jpg';
xoxo[49] = '/images/flash_ad_vt_baseball2.jpg';





var j = 1
var p = xoxo.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = xoxo[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+xoxo[whichImage]+'">');
}

            //-->
