jQuery(function(){
	jQuery('#image_rotator').slides({
		preload: true,
		preloadImage: '/wp-content/themes/stcclub/slides/loading2.gif',
		play: 4000,
		pause: 2500,
		hoverPause: true,
		autoHeight: true,
		effect: 'fade',
		crossfade: 'true',
		generateNextPrev: false,
		generatePagination: false,
		animationStart: function(current){
			jQuery('.caption').animate({
				bottom:-35
			},100);
			if (window.console && console.log) {
				// example return of current slide number
				console.log('animationStart on slide: ', current);
			};
		},
		animationComplete: function(current){
			jQuery('.caption').animate({
				bottom:0
			},200);
			if (window.console && console.log) {
				// example return of current slide number
				console.log('animationComplete on slide: ', current);
			};
		},
		slidesLoaded: function() {
			jQuery('.caption').animate({
				bottom:0
			},200);
		}
	});
});
