jQuery(document).ready(function($) { 
/*	$('#featured_slideshow_holder').hover(
        function() { $('#controls').fadeIn(); },
        function() { $('#controls').fadeOut(); }
    );*/
    
    $('#featured-slideshow').cycle({ 
    fx:     'fade', 
    speed:   800, 
    timeout: 4000, 
    pause:	1,
    pager:	'#slideshownav',
    pagerAnchorBuilder: function(idx, slide) { 
        // return selector string for existing anchor 
        return '#slideshownav li:eq(' + idx + ') a'; 
    } 

}); 
	
}); 
