$(function(){
	$('#idx_slider_news').slides({
	preload: false,
	preloadImage: 'squelettes/img/loading.gif',
	play: 10000,
	pause: 5000,
	hoverPause: true,
	animationStart: function(current){
		$('.caption').animate({
			bottom:-55
			},100);
		},
	animationComplete: function(current){
		$('.caption').animate({
			bottom:0
			},200);
		},
	slidesLoaded: function() {
		$('.caption').animate({
			bottom:0
			},200);
		}
	});
});


