$(document).ready(function() {

$('#slideshow').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    speedIn: 1000,
    speedOut: 1000,
    timeout: 7000,  
    pager:  '#thumbnails',  
    pagerAnchorBuilder: function(idx, slide) { 
        // return selector string for existing anchor 
        return '#thumbnails li:eq(' + idx + ') a'; 
    } 
});




});

/*
$('#slideshow').cycle({ 
    fx:     'fade', 
    speed:  'slow',
    pager:  '#pager' ,
    speedIn: 2000,
    speedOut: 2000,
    timeout: 7000, 
    slideExpr: 'img' ,
     before:     function() {
            $('#caption').html(this.alt);
           }
});
*/




