$(function() {

    $('#slideshow').cycle({
        fx:      'fade',
        timeout:  0,
        startingSlide: 0,  // start on the slide that was in the markup 
    	timeout: 3000,
    	speed: 1000,
        prev:    '#prev',
        next:    '#next',
        pager:   '#nav',
        pagerAnchorBuilder: pagerFactory
    });

    function pagerFactory(idx, slide) {
        var s = idx > 4 ? ' style="display:none"' : '';
        return '<li'+s+'><a href="#">'+(idx+1)+'</a></li>';
    };
    
});

$(function() {

    $('#slideshow2').cycle({
        fx:      'fade',
        timeout:  0,
        startingSlide: 0,  // start on the slide that was in the markup 
    	timeout: 3000,
    	speed: 1000,
        prev:    '#prev',
        next:    '#next',
        pager:   '#nav',
        pagerAnchorBuilder: pagerFactory
    });

    function pagerFactory(idx, slide) {
        var s = idx > 4 ? ' style="display:none"' : '';
        return '<li'+s+'><a href="#">'+(idx+1)+'</a></li>';
    };
    
});
