/*THIS IS USE FOR TOOLTIP SOCIABLE IN BLOG SINGLE PAGE*/

$(document).ready(function(){ 
	$(".bubble a img").hover(function() {
	$(this).next("em").stop(true, true).animate({opacity: "show", top: "-4"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "20"}, "fast");
	});
 
});
