$(document).ready( function () {
	$(".articlepresentation:not('.ouvrir')").slideUp(0);
    $(".menuarticle").click( function () {
        if ($(this).next(".articlepresentation:visible").length != 0) {
            $(this).next(".articlepresentation").slideUp(200, function () { $(this).removeClass("open") } );
        }
        else {
            $(".articlepresentation").slideUp(200, function () { $(this).removeClass("open") });
            $(this).next(".articlepresentation").slideDown(400, function () { $(this).addClass("open") } );
        }
        return false;
    });
	$(".messedelannee:not('.ouvrir')").slideUp(0);
    $(".menumesse").click( function () {
        if ($(this).next(".messedelannee:visible").length != 0) {
            $(this).next(".messedelannee").slideUp(200, function () { $(this).removeClass("open") } );
        }
        else {
            $(".messedelannee").slideUp(200, function () { $(this).removeClass("open") });
            $(this).next(".messedelannee").slideDown(400, function () { $(this).addClass("open") } );
        }
        return false;
    });
});
