// Partager sur Facebook et Twitter
			$(function(){
                  	$(".shareFacebook").mouseover(function(){
                  		if($(this).find(".tooltipfb").length>0) return false;
                  		$(this).append('<span class="tooltipfb"></span>');
                                  var info = $(this).find(".tooltipfb");

                  		var decalX = info.width()-$(this).width();
                   	info.css({
                  				left:-decalX/2,
                  				display:"block",
                  				top:-30
                  		})
                  		info.stop().animate({top:-35,opacity:1},500);
                  		return true;
                  	});
                  	$(".shareFacebook").mouseout(function(){
                                  var info = $(this).find(".tooltipfb");
	                  	$(this).attr("title",info.text());
                  		info.css("display","block");
                  		info.stop().animate({top:-35,opacity:0},500,"linear",function(){
                                                  $(this).remove();
                                  });
                  		return true;
                  	});
					
					$(".shareTwitter").mouseover(function(){
                  		if($(this).find(".tooltiptw").length>0) return false;
                  		$(this).append('<span class="tooltiptw"></span>');
                                  var info = $(this).find(".tooltiptw");

                  		var decalX = info.width()-$(this).width();
                   	info.css({
                  				left:-decalX/2,
                  				display:"block",
                  				top:-30
                  		})
                  		info.stop().animate({top:-35,opacity:1},500);
                  		return true;
                  	});
                  	$(".shareTwitter").mouseout(function(){
                                  var info = $(this).find(".tooltiptw");
	                  	$(this).attr("title",info.text());
                  		info.css("display","block");
                  		info.stop().animate({top:-35,opacity:0},500,"linear",function(){
                                                  $(this).remove();
                                  });
                  		return true;
                  	});
                  });