function survol () {
	$('.image-galerie a span').css("marginBottom", "-80px");
	$('.image-galerie a').hover(function(){
		$(this).find("span").stop().animate({marginBottom:'0'},{queue:false,duration:300});
	}, function() {
		$(this).find("span").stop().animate({marginBottom:'-80px'},{queue:false,duration:300});
	});
};
