jQuery(function(){
	jQuery('#slides').slides({
		preload: true,
		preloadImage: 'http://searchengineland.com/figz/wp-content/themes/sel3/images/loading.gif',
		play: 5000,
		pause: 2500,
		hoverPause: true,
		animationStart: function(current){
			jQuery('.slideCaption').animate({
				bottom:-35
			},100);
			if (window.console && console.log) {
				console.log('animationStart on slide: ', current);
			};
		},
		animationComplete: function(current){
			jQuery('.slideCaption').animate({
				bottom:0
			},200);
			if (window.console && console.log) {
				console.log('animationComplete on slide: ', current);
			};
		},
		slidesLoaded: function() {
			jQuery('.slideCaption').animate({
				bottom:0
			},200);
		}
	});
});
