 $(function(){
   $('#slides').slides({
    preload: true,
    preloadImage: '/images/loading.gif',
    play: 5000,
    pause: 6500,
    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);
    }
   });
   $('#newsSlideBlock').slides({
    preload: true,
    preloadImage: '/images/loading.gif',
    play: 5000,
    pause: 6500,
    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);
    }
   });   
   
   
  });
