jQuery(document).ready(function($){
	$('.caption').show();
	$('#slides').slides({
		preload: true,
		preloadImage: 'templates/g24/img/slide-loading.gif',
		play: 4000,
		pause: 2500,
		slideSpeed: 600,
		hoverPause: true,
		animationStart: function(current){
			$('.caption').animate({
				bottom:-35
			},100);
		},
		animationComplete: function(current){
			$('.caption').animate({
				bottom:0
			},200);
		},
		slidesLoaded: function() {
			$('.caption').animate({
				bottom:0
			},200);
		}
	});
});
