(function ($) {

    var initSlideShowUdine = function() {
                
                                $('#slides').slides({
                                        preload: true,
                                        preloadImage: '/sites/default/themes/ectm/layout/img/loading.gif',
                                        play: 3000,
                                        pause: 2500,
                                        hoverPause: true,
                                        animationStart: function(current){
                                                $('.caption').animate({
                                                        bottom:-35
                                                },100);
                                                
                                        },
                                        animationComplete: function(current){
                                                $('.caption').animate({
                                                        bottom:0
                                                },200);
                                                
                                        },
                                        slidesLoaded: function() {
                                                $('.caption').animate({
                                                        bottom:0
                                                },200);
                                        }
                                });
                            
                            };
        $(document).ready(initSlideShowUdine);
    })(jQuery);

