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:  'fast',
		timeout: 0,
		fit: true,
        pager:  '#schedulenav',
		cleartypeNoBg: true,
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#schedulenav li:eq(' + (idx) + ')';
        }
    });

	
});

