$(document).ready(function() {

			$("#footer .social .onglet").mouseenter(function(){
					$(this).find(".forme").stop(true,false);
					$(this).find(".forme").animate({"bottom": "0px"},  { duration: "fast", queue: false });	
					
					$(this).css("cursor","pointer");
					return false;
			});

			$("#footer .social .onglet").mouseleave(function(){
					$(this).find(".forme").stop(true,false);
					$(this).find(".forme").animate({"bottom": "-20px"},  { duration: "fast", queue: false });	

					$(this).css("cursor","auto");
					return false;
			});

});



