$(document).ready(function()
{
	$("#partage").hover(
		function(){
		  $("#partage-pane").show();
    },
		function(){
			$("#partage-pane").hide();
		}
  );
});

function PartageFacebook() {
	u = location.href;
  window.open('http://www.facebook.com/sharer.php?u=' + encodeURIComponent(u));
}
function PartageTwitter() {
	u = location.href;
  window.open(POPUP_URL + '/export-twitter.html?u=' + encodeURIComponent(u));
}
function PartageEmail() {
	u = location.href;
  location.href = POPUP_URL + '/export-email.html?u=' + encodeURIComponent(u);
}