// JavaScript Document

$(document).ready(function() {

var showText="plus...";
var hideText="moins...";

$(".toggle").prev().append(' <a href="#" class="toggleLink more">'+showText+'</a>');
$('.toggle').hide();
$('a.toggleLink').click(function() {

if ($(this).text()==showText) {
$(this).text(hideText);
$(this).parent().next('.toggle').slideDown('fast');
}
else {
$(this).text(showText);
$(this).parent().next('.toggle').slideUp('fast');
}

return false;

});
});

