jQuery(document).ready(function($) {
	//Hover des thumbnail
	$('#home .col .colthumb').hover(function(){
		$('img',this).stop(true,true).fadeOut();
	},function(){
		$('img',this).fadeIn();
	});
	
	//Hover du lien don pour le coeur
	/*$('#home #adhesion_don a').hover(function(){
		$('.under',this).stop(true,true).fadeIn();
		$('.hover',this).stop(true,true).fadeOut();
	},function(){
		$('.under',this).fadeOut();
		$('.hover',this).fadeIn();
	});*/
}); 
