jQuery('document').ready(function() {
  // Elévation au survol
  jQuery('.markup').mouseenter(function() {
    jQuery(this).animate({
      height: '+=35',
      top: '-=35'
    });
  }).mouseleave(function() {
    jQuery(this).animate({
      height: '-=35',
      top: '+=35'
    });
  });
});
