jQuery() .ready(function(){
	$(".ascenseur") .next("div") .hide();
	$(".ascenseur") .mousedown(function(){
		if($(this).next("div") .is(":hidden")){
		$("ascenseur") .next("div:visible").slideUp();
		$(this) .next("div").slideDown();}
		else {$(this) .next("div:hidden").slideDown();
		$(this) .next("div").slideUp();
		}
	});
	
});
