/* Read More */

jQuery(function($){
  $('.textMore').hide();
  $('.fr .textMore').after('<p class="readmore"><a href="#">Suite &raquo;</a></p>');
  $('.en .textMore').after('<p class="readmore"><a href="#">Read More &raquo;</a></p>');

  $('.text .readmore a').click(function(){
    $textMore = $(this).parents('.text').find('.textMore');

    if($textMore.length){
      $textMore.show();
      $(this).parent().hide();
      return false;
    }
  });
});

