$(function() {
	// OnMouseOver sur les liens fait apparaitre un descriptif ".infos"
	$("#services_vedettes h2 a").hover(
		function() {
			$(this).parents("li").css("z-index","500");
			$(this).parent().next(".detail").show();
			$(this).children("span.plus").show();
		},
		function() {
			$(this).parents("li").css("z-index","0");
			$(this).parent().next(".detail").hide();
			$(this).children("span.plus").hide();
		}
	);
});
