//the logos will appear in the order listed
//it is random where in the list it starts
//when it's at the end, it starts over at the beginning of the list
//for greater exposure you can list a logo more than once
//sponsor logos should be no bigger than width=140 height=134

//arrSponsorLogos = new Array (
	"/summit/images/sponsors/chevron.gif",
	"/summit/images/sponsors/coco.gif",
	"/summit/images/sponsors/africa.gif",
	"/summit/images/sponsors/gm.gif",
	"/summit/images/sponsors/chrylser.gif",
	"/summit/images/sponsors/boarder.gif",
	"/summit/images/sponsors/gwi.gif",
	"/summit/images/sponsors/cutter.gif",
	"/summit/images/sponsors/ipp.gif",
	"/summit/images/sponsors/iovino.gif",
	"/summit/images/sponsors/atoz.gif",
	"/summit/images/sponsors/crdbbank.gif",
	"/summit/images/sponsors/playpumps.gif",
	"/summit/images/sponsors/sweetunityfarms.gif",
	"/summit/images/sponsors/vodacom.gif" // no comma after last item
);


//logos = arrSponsorLogos.length;
//count = Math.round(Math.random() * (logos - 1));

//function rotateSponsorLogos() { 
	if (count >= logos) count = 0;
	changeLogo(count);
	if (count <= logos){
		count++;
		setTimeout("rotateSponsorLogos()",2500); 
	}
}
//function changeLogo(count) {
	newImage = arrSponsorLogos[count];
	document.sponsorLogo.src = newImage;
}