jQuery().ready(function(){
	$(".more").next("div").hide();
	$(".more").click(function(){	
		$(".more").next("div:visible").hide();
		hauteur=$(this).offset().top;
		if($(this).next("div").is(":hidden")){	
			$(this).next("div").slideDown("slow");
			$('html,body').animate({scrollTop:hauteur},1000);
		}
	});
});


