$(document).ready(function(){

    $(".bookmarks").asocial();
    
	$("#menu span").append("<em></em>");
	
	$("#menu span").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "-75"}, "slow");
		var hoverText = $(this).find("a").attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "-85"}, "fast");
	});
	
	$(".tooltip").hover(function() {
		$(this).children().animate({opacity: "show", left: "32"}, "slow");
	}, function() {
		$(this).children().animate({opacity: "hide", left: "40"}, "fast");
	});
	
});
