$(document).ready(function(){

	//  Commands for the Home Section Gallery
	$('#main-gallery').each(function(index) {
		var $self = $(this);
		var $nav = $self.next('.gallery-nav').find('.indicators');
	
		var $next = $self.next('.gallery-nav').find('.next');
		var $prev = $self.next('.gallery-nav').find('.prev');
		
		$self.cycle({ 
			activePagerClass: 'active',
			fx:     'fade', 
			speed:  500, 
			next:   $next, 
			prev:   $prev,
			timeout:	4000,
			pager:	$nav,
			pagerAnchorBuilder: function(idx) { 
				return '<a href="#" class="indicator">' + idx + '</a>'; 
			}
		});
	});
});
