$(document).ready(function() {


$(".bubble-link").hover(function() {

if($(this).next(".bubble").html().trim().length == 0) {
$(this).next(".bubble").remove();
}

$(this).next(".bubble").stop(true, true).animate({opacity: "show", top: "34"}, "slow");
}, function() {
$(this).next(".bubble").animate({opacity: "hide", top: "24"}, "fast");

});

});


