// JavaScript Document
$(function(){

		$('#slides').slides({

			preload: true,

			preloadImage: '/images/loading.gif',

			play: 7500,

			pause: 2500,

			hoverPause: true,

			animationStart: function(current){

				$('.sCaption').animate({

					bottom:-35

				},100);

				if (window.console && console.log) {

					// example return of current slide number

					console.log('animationStart on slide: ', current);

				};

			},

			animationComplete: function(current){

				$('.sCaption').animate({

					bottom:0

				},200);

				if (window.console && console.log) {

					// example return of current slide number

					console.log('animationComplete on slide: ', current);

				};

			},

			slidesLoaded: function() {

				$('.sCaption').animate({

					bottom:0

				},200);

			}

		});

	});
