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

