$(function() {
	$('#slideshow').cycle({
		fx:     'fade',
		speed:  'slow',
		timeout: 4000,
		pager:  '#slideshow_nav',
		pagerAnchorBuilder: function(idx, slide) {
			// return sel string for existing anchor
			return '#slideshow_nav li:eq(' + (idx) + ') a';
		}
	});
	
});

$(function() {
	$('#slideshow_02').cycle({
		fx:     'fade',
		speed:  'slow',
		timeout: 4000,
		pager:  '#slideshow_nav_02',
		pagerAnchorBuilder: function(idx, slide) {
			// return sel string for existing anchor
			return '#slideshow_nav_02 li:eq(' + (idx) + ') a';
		}
	});
	
});


