function cordiale() {
	$('.devInfos_declenche').hover(
		function() {
			$('#'+$(this).attr('rel')).show();
		},
		function() {
			$('#'+$(this).attr('rel')).hide();
		}
	);
}
