// Ride the carousel...
jQuery(document).ready(function() {
    jQuery("#cycle").cycle({
		fx: 'fade',
		speed: 600,
        pager:  '#cycle_nav',
        pagerAnchorBuilder: function(idx, slide) {
	        // return selector string for existing anchor
	        return '#cycle_nav a:eq(' + (idx) + ')';
    	}
	});
});

