$(document).ready(function() {
	$("a.appstore em.bubble").hide();
	$("a.appstore").hover(function() {
			
			$(this).find("em").animate({opacity: "show", top: "-78"}, "slow");
			var hoverText = $(this).attr("bubble");
		    $(this).find("em").text(hoverText);
		    
		}, function() {
			
			$(this).find("em").animate({opacity: "hide", top: "-78"}, "fast");
	});
});