// JavaScript Document


// SET TO TOTAL NUMBER OF SPOTLIGHT ITEMS IN SPOTLIGHT.SHTML
	var tout_count 		= 2;
// "STEPS" in SPOTLIGHTS - KEEP AT "1" TO STEP THROUGH 1 by 1 instead of evey other...
	var current_tout 	= 1;
// COMMENT NEXT LINE TO TURN SPOTLIGHT FADING OFF...
/* 	window.setInterval("switchSpotlight()", 10000); */
	window.setInterval("switchSpotlight()", 7500);
	
	function switchSpotlight()
	{
		current_tout 	= (current_tout < tout_count) ? current_tout : 0;
		$('div#spotlight').fadeOut("slow");
		//$('p#spotSmallprint').hide("fast");
		setTimeout('swapSpot(' + current_tout + ')',1000);
		current_tout++;
	}
	
	function swapSpot(spotid)
	{
		var sh	= document.getElementById('spotholder');
		var sp	= document.getElementById('spotSmallprint')
		sh.innerHTML = document.getElementById('spot_' + spotid).innerHTML;
		sp.innerHTML = document.getElementById('footnote_' + spotid).innerHTML;
		$('div#spotlight').fadeIn("slow");
		//$('p#spotSmallprint').show("fast");
	}