jQuery(document).ready(function() {
    jQuery('#features').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 8000,
		pause:1, 
        pager:  '#featurenav',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#featurenav li:eq(' + (idx) + ')';
        }
    });
	
    jQuery('.scheduler').cycle({
        fx:     'fade',
        speed:  'slow',
		timeout: 0,
        pager:  '#schedulenav',
		startingSlide: '6',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#schedulenav li:eq(' + (idx) + ')';
        }
    });

	
});

