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_soccer_1.jpg','Athletics');
randomBanner[1] = new Array('athl_b_soccer_2.jpg','Athletics');
randomBanner[2] = new Array('athl_b_soccer_3.jpg','Athletics');
randomBanner[3] = new Array('athl_b_soccer_4.jpg','Athletics');
randomBanner[4] = new Array('athl_b_soccer_5.jpg','Athletics');
randomBanner[5] = new Array('athl_b_soccer_6.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);
