$(document).ready(function(){
    $('#ticker').cycle({
        fx:     'turnDown',
        speed:  'slow',
        timeout: 5000,
		pause:1,
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#slider_nav li:eq(' + (idx) + ') a';
        }
    });
});

