$(document).ready(function(){
 
    $(".link-popup a").hover(function() {
    $(this).next("pt").stop(true, true).animate({opacity: "show", top: "-30"}, "slow");
    }, function() {
    $(this).next("pt").animate({opacity: "hide", top: "-40"}, "fast");
    });
 
});
