﻿$(function() {
    $('#slides').slides({
        preload: true,
        preloadImage: '..img/loading.gif',
        effect: 'fade',
        crossfade: true,
        play: 5000,
        pause: 2500,
        hoverPause: true,
        generatePagination: true,
        animationComplete: function(current) {
            $('.caption').animate({
                bottom: 0
            }, 200);
        },
        slidesLoaded: function() {
            $('.caption').animate({
                bottom: 0
            }, 200);
        }
    });
});
