function spotlightCycle() {
	$('#spotlightContainer').cycle({
										fx: 'fade',
										speed: 1500,
										//pause: 7 
										timeout: 7000
	});
	$("#spotlightContainer").hover(
		function()
		{
			$('#spotlightContainer').cycle('pause');
		},
		function()
		{
			$('#spotlightContainer').cycle('resume');
		});
}

function slotTwoCycle() {
	$('#slotTwoContainer').cycle({
										fx: 'fade',
										speed: 500,
										pause: 1 
	});
	$("#slotTwoContainer").hover(
		function()
		{
			$('#slotTwoContainer').cycle('pause');
		},
		function()
		{
			$('#slotTwoContainer').cycle('resume');
		});
}

function slotThreeCycle() {
	$('#slotThreeContainer').cycle({
										fx: 'fade',
										speed: 500,
										pause: 1 
	});
	$("#slotThreeContainer").hover(
		function()
		{
			$('#slotThreeContainer').cycle('pause');
		},
		function()
		{
			$('#slotThreeContainer').cycle('resume');
		});
}