var spotlightCurrentId = 1;
var spotlightAutoRotate = false;
var spotlightTotalItems = 3;
var spotlightAutoRotateSeconds = 8;

$(document).ready(function() {
	// Auto rotate
	var spotlightAutoRotate = setInterval(function() {
		id = spotlightCurrentId + 1;
		if(id > spotlightTotalItems) id = 1;
		spotlightSwap(id);
	},spotlightAutoRotateSeconds*1000);

	// User selection
	$("#spotlightSelector a").click(function() {
		// Get ID	
		thisId = $(this).attr('id');
		thisId = thisId.replace('spotlightSelect-','');
		spotlightSwap(thisId);
		
		// Disable auto rotation
		clearInterval(spotlightAutoRotate);
	});
});

function spotlightSwap(id) {
	// Activate selector		
	$("#spotlightSelector a").removeClass('active');
	$("#spotlightSelect-"+id).addClass('active');

	// Change text
	$("#spotlightText-"+spotlightCurrentId).hide();
	$("#spotlightText-"+id).show();
			
	// Change image
	$("#spotlightImage-"+spotlightCurrentId).fadeOut();
	$("#spotlightImage-"+id).fadeIn();
	
	spotlightCurrentId = id;
}