$(function(){
  $('#slides_frame').slides({
    container: 'slides',
    preload: true,
    preloadImage: '/images/slide/loading.gif',
    play: 5000,
    pause: 2500,
    hoverPause: true,
    generatePagination: false,
/*
    animationStart: function(current){
      $('.caption').animate({
        bottom:-35
      },100);
    },
    animationComplete: function(current){
      $('.caption').animate({
        bottom:0
      },200);
    },
*/
    slidesLoaded: function() {
      $('.caption').animate({
        bottom:0
      },200);
    }
  });
});

