
$(document).ready(function () {
	
	
$("#slides").slides({
				pagination: true,
				preload: true,
				preloadImage: "../images/slider/loading.gif",
				play: 5000,
				pause: 2500,
				effect: "slide",
				hoverPause: true,
				animationStart: function(){
					$(".caption").animate({
						bottom:-35
					},100);
				},

				animationComplete: function(current){
					$(".caption").animate({
						bottom:0
					},200);

					if (window.console && console.log) {
						// example return of current slide number
						// console.log(current);
					};
				}
			});
});
