sponsorImages = new Array("LCCBanner.gif","rms.gif","prolink.gif","shea.gif","hg.gif", "reynoldsBanner.gif", "giro.gif", "vcs.jpg", "bikeSourceSm.gif", "Rudy-Project_148X65.JPG", "mtFitnessList.jpg")
	thisSponsor = 0
	imgCt = sponsorImages.length

	function rotate() {	
		if (document.images) {
			thisSponsor = Math.floor((Math.random()* imgCt))
			if (thisSponsor == imgCt) {
				thisSponsor = 0
			}
			document.sponsors.src="../images/" + sponsorImages[thisSponsor]
		  	setTimeout("rotate()", 2 * 1000)
	  	}
	}	
