﻿$(document).ready(function () {

    $(".popup a").hover(function () {
        $(".popuptext").css("top", "-100");
        $(this).next(".popuptext").stop(true, true).animate({ opacity: "show", top: "-105" }, "slow");
    }, function () {
        $(this).next(".popuptext").animate({ opacity: "hide", top: "-150" }, "fast");
        
    });

});
