$(document).ready(function() {  
  $('.titre h3').click(function() {
    $(this).parent().parent().find('.hide_me').slideToggle();
  });
});

