	$(function(){
		$('#waittimes').slides({
			preload: false,
			play: 5000,
			pause: 2500,
			hoverPause: false,
			animationStart: function(current){
				$('.waittimes-caption').animate({
					bottom:-170
				},100);
				if (window.console && console.log) {
					// example return of current slide number
					console.log('animationStart on slide: ', current);
				};
			},
			animationComplete: function(current){
				$('.waittimes-caption').animate({
					bottom:0
				},200);
				if (window.console && console.log) {
					// example return of current slide number
					console.log('animationComplete on slide: ', current);
				};
			},
			slidesLoaded: function() {
				$('.waittimes-caption').animate({
					bottom:0
				},200);
			}
		});
	});
