﻿var current = "";
var rotateInterval = 8000;
var useEffect = false;
var paused = true;

function RunSpotlight(setPause) {
	$("#spotlight > ol").before('<div id="SpotlightNavigation">').cycle({ fx: 'fade', pause: 1, timeout: rotateInterval, pager: '#SpotlightNavigation' });
	if (setPause) {
		$("#spotlight > ol").before('<div id="SpotlightNavigation">').cycle('pause');
		paused = true;
	} else {
		paused = false;
	}
}

function RotateSpotlights() {
//	rotator = new SpotlightRotator();
//	rotator.Rotate();
}


