$(document).ready(function() {
	
	$('#main-slideshow').cycle({ 
		fx:     'fade', 
		timeout: 0, 
		pager:  '#slideshow-nav', 
		next:   '#next',
		prev:   '#prev',
		pagerAnchorBuilder: function(idx, slide) { 
			// return selector string for existing anchor 
			return '#slideshow-nav li:eq(' + idx + ') a'; 
		} 
	});
						   
});

