jQuery(document).ready(function() { 
       
var mySections = $(".slidebuttons ");

mySections.each(function (i)
{
  $(this).delay(1000).delay(i * 150).animate({       
      right: '-198px'
    }, 2000);
});
  $('.slidebuttons ').hover(
  function(){
    $(this).animate({       
      right: '0px'         
    }, 400);
  },
  function(){
    $(this).animate({       
      right: '-198px'         
    }, 400);
  }
  );      
  
$(".info").hover(function() {
  $(this).animate({ 
    height: '120px',
    top: '185px'
    }, 500).addClass("infoact");
}, function() {
  $(this).animate({ 
    height: '96px',
    top: '195px' }, 500).removeClass("infoact");  
});
  
 
  

});



