$(function(){
	$(".exh-moreInfos").css("display", "none");
	$(".exhibition").hover(
		function(){
			$(this).children(".exh-moreInfos").fadeIn(200);
		}, function(){
			$(this).children(".exh-moreInfos").fadeOut(200);
		}
	);
});




