$(document).ready(function(){

	$(".social_text em").text("Follow me on these networks for my latest updates!!!");

	$(".socialmenu a").hover(function() {
		$(".social_text em").animate({opacity: "show", top: "-75"}, "slow");
		var hoverText = $(this).attr("alt");
	    $(".social_text em").text(hoverText);
	}, function() {
		$(".social_text em").animate({opacity: "show", top: "-75"}, "slow");
		$(".social_text em").text("Follow me on these networks for my latest updates!!!");
	});

});
