$(document).ready(function() {
	//On mouse over those thumbnail
	$('.vignette, .linkh1').hover(function() {
		//Display the caption
		$(this).parents('div.actualite').find('div.caption').stop(false,true).fadeIn(200);
	},
	function() {
		//Hide the caption
		$(this).parents('div.actualite').find('div.caption').stop(false,true).fadeOut(200);
	});
	
});
