jQuery().ready(function(){
	$('.ascenseur').next('div').hide();
	$('.ascenseur').click(function (){
		if($(this).next('div').is(':hidden')) {
			$('.ascenseur').next('div:visible').slideUp();
			$('.ascenseuron').next('div:visible').slideUp();
			$(this).next('div').slideDown();
		}
		
		else if($(this).next('div').is(':visible')) {
			$(this).next('div').slideUp();
		}
	});
	$('.ascenseuron').click(function (){
		if($(this).next('div').is(':hidden')) {
			$(this).next('div').slideDown();
		}
		else if($(this).next('div').is(':visible')) {
			$(this).next('div').slideUp();
		}
	});
	
	$(window).load(function (){
		$('.contenu').hide();
		$('.contenu').fadeIn('slow');
	});
});
