// JavaScript Document
$(document).ready(function(){
    $(".more").hide("slow");   
});
$(document).ready(function(){
    $(".change").toggle(function(){
      $(this).parents("p").next(".more").show("slow");
      $(this).html("weniger sehen");
    },function(){
      $(this).parents("p").next(".more").hide("slow");
      $(this).html("mehr sehen");
    });
});
$(document).ready(function(){
    $(".morefr").hide("slow");   
});
$(document).ready(function(){
    $(".changefr").toggle(function(){
      $(this).parents("p").next(".morefr").show("slow");
      $(this).html("en savoir moins");
    },function(){
      $(this).parents("p").next(".morefr").hide("slow");
      $(this).html("en savoir plus");
    });
});
$(document).ready(function(){
    $(".moreen").hide("slow");   
});
$(document).ready(function(){
    $(".changeen").toggle(function(){
      $(this).parents("p").next(".moreen").show("slow");
      $(this).html("see less");
    },function(){
      $(this).parents("p").next(".moreen").hide("slow");
      $(this).html("see more");
    });
}); 
