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

