/* Randomly selects sponsor image */

function loadBanner() {
   var imgSrc =
   		[
   		  src="http://www.appleeducationaffiliates.com/b.aspx?id=1031&mm=40&img=affiliate_appletv_300x250_v5_custom.JPG",
   		  src="http://www.appleeducationaffiliates.com/b.aspx?id=1031&mm=43&img=macbook_edu_300x250_Custom.JPG",
   		  src="http://www.appleeducationaffiliates.com/b.aspx?id=1031&mm=47&img=nano_300x250_1_Custom.JPG",
   		  src="http://www.appleeducationaffiliates.com/b.aspx?id=1031&mm=48&img=it_feb08_300x250_Custom.JPG",
   		  src="http://www.appleeducationaffiliates.com/b.aspx?id=1031&mm=49&img=affiliate_m82_300x250_Custom.JPG",
   		  src="http://www.appleeducationaffiliates.com/b.aspx?id=1031&mm=53&img=pp_affiliate_canon_300x250_Custom.JPG",
   		  src="http://www.appleeducationaffiliates.com/b.aspx?id=1031&mm=75&img=300x250_bts_bl_custom.GIF",
   		  src="http://www.appleeducationaffiliates.com/b.aspx?id=1031&mm=77&img=300x250_bts_yel_custom.GIF",
   		  src="http://www.appleeducationaffiliates.com/b.aspx?id=1031&mm=41&img=Ed_Mac_LS_300x250_Custom.JPG"
   		]
   	var pickImg =imgSrc[Math.floor(Math.random()*imgSrc.length)]
   //-- sVal is built using a conditional operator ( ?: ) statement to pad a zero if iNdx < 10 --//
   document.write('<img src="' + pickImg + '" width="225" height="180" align="top" alt="Apple @ Vanderbilt" border="0">');
   }


