var $s = jQuery.noConflict();

$s(document).ready(function() {
    $s('.slideshow').cycle({
		fx:     'fade', 
    speed:  'slow',
	delay: 10000,
    timeout: 5000,
		pager:   '#slconlinks',
        pagerAnchorBuilder: pagerFactory
		
		});
	
	function pagerFactory(idx, slide) {
        var s = idx > 2 ? ' style="display:none"' : '';
        return '<a href="#">'+(idx+1)+'</a>';
    };
	
});