$(window).load(function(){
	$('#images').cycle({ 
		fx: 'fade', 
		pager: '#links', 
		pagerAnchorBuilder: function(idx, slide) {
			return '<a href="#" id="slide_'+ idx +'" class="slide_bullet"></a>';
		}, 
		before: function() {
			$('#slide_text').fadeOut();
		}, 
		after: function() {
			$('#slide_text').html(this.alt);
			$('#slide_text').fadeIn();
		}
	});
});
