jQuery(function($){
$('.roule').show();
$('.roule .moins').show();
$('.roule .plus').hide();

$('.roule.hide .moins').hide();
$('.roule.hide .plus').show();
$('.roule.hide').parent().next().hide();

$('.roule').live("click",function()
{
if ($(this).hasClass('hide'))
{
	$(this).parent().next().slideDown('slow');
	$(this).removeClass('hide');
	$(this).children('.moins').show();
	$(this).children('.plus').hide();
}
else
{
	$(this).parent().next().slideUp('slow');
	$(this).addClass('hide');
	$(this).children('.moins').hide();
	$(this).children('.plus').show();
}
});

});