//When the page has loaded...
$(document).ready(function() {
	
	$('#slideshow ul').cycle({  
		fx: 'fade', 
		timeout: 2000,
		pager:  '#slide-changer-links',
		pagerAnchorBuilder: function(idx, slide) { 
			return '#slide-changer-links a:eq(' + idx + ')'; 
		}
	});	
	
});
