jQuery(function(){
/* Big slider */
	jQuery('#slides').slides({
		preload: true,
		preloadImage: '/wp-content/themes/srdf/i/ajax-loader.gif',
		play: 7000,
		pause: 2500,
		fadeSpeed: 500, // number, Set the speed of the fading animation in milliseconds
		effect: 'fade',
		hoverPause: true,

		animationStart: function(current){
			jQuery('.caption').animate({
				bottom:-38
			},100);
		},
		animationComplete: function(current){
			jQuery('.caption').animate({
				bottom:0
			},200);
		},
		slidesLoaded: function() {
			jQuery('.caption').animate({
				bottom:0
			},200);
		}
	});

/* Small slider */
	jQuery('#slides-images').slides({
		preload: true,
		preloadImage: '/wp-content/themes/srdf/i/ajax-loader.gif',
		play: 5000,
		pause: 2500,
		fadeSpeed: 500, // number, Set the speed of the fading animation in milliseconds
		effect: 'fade',
		hoverPause: true
	});
});

