var index = 1;
var total ;

$(document).ready(function() {
						   
	// incentives slider --------
	$('#r3c2r8').cycle({ 
		fx:     'fade',
		speed:	'slow',
		timeout: 0,
		next:	'#nextBtn',
		prev:	'#prevBtn'
	});
	
	var c = $('#r3c2r8').children();
	total = c.length;
	$('#pagination').text(index + " / " + total + " " );
	
	$('#nextBtn').click(function() {
		if ( index<total )
		{
			index = index+1;
		} else {
			index = 1;	
		}
		
		$('#pagination').text(index + " / " + total + " " );
	});
	
	$('#prevBtn').click(function() {
		if ( index>1 )
		{
			index = index-1;
		} else {
			index = total;	
		}
		
		$('#pagination').text(index + " / " + total + " " );
	});
	
	// home status --------
	$('#homeMyStatus').cycle({ 
		fx:     'fade',
		speed:	0,
		timeout: 25000
	});
 });
