$(function(){
	$(".botonsocial").hover(
		function () {
			$(this).children('img').animate({
				top:"-35px"
			}, 
			300, 
			function(){
			});	
		}, 
		function () {
			$(this).children('img').animate({
				top:"-4px"
			}, 
			300, 
			function(){
			});		
		}
	);
	
	$(".desplegar").click(function(evento){
		evento.preventDefault();
		if(inicio != $(this).attr("rel")){
			$("#a"+inicio+"t").fadeOut();
			inicio = $(this).attr("rel");
			$("#a"+$(this).attr("rel")+"t").delay(600).fadeIn();
			
		}
	});
});



