	<!--
	
	var index = 0;
	var banners = new Array(
		"http://camb.org/camb/images/BANNER1.gif",
		"http://camb.org/camb/images/BANNER2.gif",
		"http://camb.org/camb/images/BANNER3.gif",
		"http://camb.org/camb/images/BANNER4.gif"
	);
	
	
	function rotate() {
	if (index == banners.length) index = 0;
		document.getElementById('the_banner').src = banners[index];
		index++;
		setTimeout('rotate()', 3000);
	}
	
	-->