$(function() {
	// on ajoute un evenement sur le passage sur les liens bonus +
	$(".lesBonus img.imageHover").each(function(i) {
		// on ajoute l'evenement
		$(this).hover(
			function (e) {
				imageSurvol = $(this).parent().children("img.imageSurvol");
				imageSurvol.css("display", "block");
				imageSurvol.css("top", e.pageY - imageSurvol.height() - 20);
				imageSurvol.css("left", e.pageX);
			}, 
			function () {
				imageSurvol = $(this).parent().children("img.imageSurvol");
				imageSurvol.css("display", "none");
				imageSurvol.css("top", "0");
				imageSurvol.css("left", "0");
			}
	    );
	});
});