$(document).ready(function(){
	$("#redes_sociales").hover(function(){
		$(".tuenti").stop().animate({right:64},200);
		$(".twitter").stop().animate({right:128},200);
		$(".facebook").stop().animate({right:192},200);
	},function(){
		$(".tuenti").stop().animate({right:0},500);
		$(".twitter").stop().animate({right:0},500);
		$(".facebook").stop().animate({right:0},500);
	});
});
