﻿// menu dépliant

$(document).ready(function(){
    $('.textelong').css({display : 'none'});
    $('.up').css({display : 'none'});
    $('.deroulant').each(function () {     
        self.inAction = false;
        var complet = this.id;
        $('#'+complet+'-down', this).css({display : 'inline'});
        $('#'+complet+'-up', this).css({display : 'none'});
    }).click(function () {
        var self = this;
        var complet = this.id;
        if (0 < $('#'+complet+'-long:visible').size()) {
            // on cache
            $('#'+complet+'-court:').fadeIn("slow");
            $('#'+complet+'-long:').fadeOut("slow");
            $('#'+complet+'-long:').slideUp("slow");
            $('#'+complet+'-court:').slideDown("slow", function(){resizeIframeParent()});
            $('#'+complet+'-down', this).css({display : 'inline'});
            $('#'+complet+'-up', this).css({display : 'none'});
        } else {
            // on montre
            $('#'+complet+'-court:').fadeOut("slow");
            $('#'+complet+'-long:').fadeIn("slow");
            $('#'+complet+'-long:').slideDown("slow", function(){resizeIframeParent()});
            $('#'+complet+'-court:').slideUp("slow");
            $('#'+complet+'-down', this).css({display : 'none'});
            $('#'+complet+'-up', this).css({display : 'inline'});
        }
               
    });
});

