$(document).ready( function () {
	$(".listesdarticles:not('.ouvrir')").hide();
    $(".titregeneral").click( function () {
        if ($(this).next(".listesdarticles:visible").length != 0) {
            $(this).next(".listesdarticles").hide(1000, function () { $(this).removeClass("open") } );
        }
        else {
            $(".listesdarticles").hide(20, function () { $(this).removeClass("open") });
            $(this).next(".listesdarticles").show(300, function () { $(this).addClass("open") } );
        }
        return false;
    });
});

