$(document).ready(function(){
		$(".social_networks a").hover(function() {
			$(this).find("em").animate({opacity: "show", top: "-50"}, "slow");
		}, function() {
			$(this).find("em").animate({opacity: "hide", top: "-60"}, "fast");
		});
	});

