imagePath="/Images/Banners/athletics/"; /*adjust the default image path, this should be root relative*/
randomBanner = new Array(); /*Do not touch this line*/

/*Add _Banners to the array below in the following manner:  'Image file name','Alt tag here (should not contain single quotes)'   Make sure to increment the numbers at the left*/


randomBanner[0] = new Array('athl_b_baseball_1.jpg','Athletics');
randomBanner[1] = new Array('athl_b_baseball_2.jpg','Athletics');


/*Do not edit below this line*/

randomNumber = Math.floor(Math.random() * randomBanner.length);
randomBannerHTML='<img alt="'+randomBanner[randomNumber][1]+'" src="'+imagePath+randomBanner[randomNumber][0]+'" />';
document.write(randomBannerHTML);
