jQuery(function ($) {
    $(".wow-link").hover(function () {
        $(this).parent().find(".wowtt").show();
    }, function () {
        $(this).parent().find(".wowtt").hide();
    }).mousemove(function(e) {
        $(this).parent().find(".wowtt").css({left: e.pageX + 1, top: e.pageY + 1});
    });
});

