$(function() {
	$('.fpssstage .fpssslide')
		.cycle({
			fx:	'fade',
			timeout: 8000,
			before: onBefore,
			pager: '.fpssstage .stagebuttons',
			pagerAnchorBuilder: function(idx,slide) {
				idxNUM = idx + 1;
				return '<a href="#" class="stagebuttonoff">' + idxNUM + '</a>';
			}			
	});
	function onBefore() {
		$('.stagecredit').html($('.slidecredit', this).html());
		$('.stageheader').html($('.slideheader', this).html());
		$('.stagecontent').html($('.slidecontent', this).html());
		$('.stagecalltoaction').html($('.slidecalltoaction', this).html());
	}
	$('.fpssstage .stagebuttons .stagebuttonoff').click(function(){
		$('.fpssstage .fpssslide').cycle('pause');
	});

});