/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(function(){
    $('#slides').slides({
				preload: true,
				preloadImage: 'images/loading.gif',
				play: 8000,
				pause: 2500,
                                generatePagination: false,
                                //effect:'fade',
				hoverPause: true,
				animationStart: function(current){
					$('#slides-locali .caption').animate({
						bottom:-45
					},800);
					if (window.console && console.log) {
						// example return of current slide number
						console.log('animationStart on slide: ', current);
					};
				},
				animationComplete: function(current){
					$('#slides .caption').animate({
						bottom:0
					},500);
					if (window.console && console.log) {
						// example return of current slide number
						console.log('animationComplete on slide: ', current);
					};
				},
				slidesLoaded: function() {
					 $('#slides .caption').animate({
						bottom:0
					},500);
				}
			});
});
