$(document).ready(function() {
			$('#titre_encart1').mouseover(function() {
  $(this).stop().animate({
    height: '85'
  }, 300);
});

	$('#titre_encart1').mouseout(function() {
  $(this).stop().animate({
    height: '27'
  }, 300);
});

$('#titre_encart2').mouseover(function() {
  $(this).stop().animate({
    height: '100'
  }, 300);
});

	$('#titre_encart2').mouseout(function() {
  $(this).stop().animate({
    height: '27'
  }, 300);
});

$('#titre_encart3').mouseover(function() {
  $(this).stop().animate({
    height: '70'
  }, 300);
});

	$('#titre_encart3').mouseout(function() {
  $(this).stop().animate({
    height: '27'
  }, 300);
});
});
