/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(function(){

    $('.ascenseur').next('div[class!="ouvert"]').hide();
    $(".ascenseur").click(function(){
        if($(this).next("div").is(":hidden")){
            $(".ascenseur").next("div:visible").slideUp();
            $(this).next("div").slideDown();
            $(".ascenseur").next("div:visible").css('z-index',999);
        }
    });
    //$('div[class="ouvert"]').slideDown();
});



