/**
 * @author elz
 */

$(document).ready(function(){


$("#descro h4").next("ul").slideUp("slow");
$("#descro h4").after("<strong class='more-txt'>(Cliquer pour voir)</strong>");

/* gestion du clic pour déplier  */
$(function(){
$('strong.more-txt').click(function(){
	var texte = $(this).text();
	$(this).fadeTo(100,0.0).text()
	if($(this).text()=="(Cliquer pour voir)" || $(this).text()=="(Revoir)")
	{
			$(this).next("ul:hidden").slideDown("slow", function () {
			
			$(this).prev().removeClass("more-txt").addClass("moins-txt")
			$(this).prev().append().text("(Replier)")
			$(this).prev().fadeTo(100,1).text()
			});
	}
	else if($(this).text()=="(Replier)")
	{
			$(this).next("ul:visible").slideUp("slow", function () {
			
			$(this).prev().removeClass("moins-txt").addClass("more-txt")
			$(this).prev().append().text("(Revoir)")
			$(this).prev().fadeTo(100,1).text()
			});
	}
	});

});

});
