jQuery.noConflict();

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