﻿$(document).ready(function() {

    $('.hoverText').mousemove(function(e) {
        var mouseX = e.pageX;
        var mouseY = e.pageY;
        var thisWidth = $('.popoverHover').width();
        var thisHeight = $('.popoverHover').height();
        $('.popoverHover').css({ 'left': (mouseX - Math.floor(thisWidth / 2) - 10) + 'px', 'top': (mouseY - 20 - thisHeight) + 'px' });
    });

    $('.hoverText').mouseover(function() {
        $('.popoverHover').html($(this).attr('title'));
        $('.popoverHover').show();
    });

    $('.hoverText').mouseout(function() {
        $('.popoverHover').html('');
        $('.popoverHover').hide();
    });

});

$(document).ready(function() {

    $('.hoverText').mousemove(function(e) {
        var mouseX = e.pageX;
        var mouseY = e.pageY;
        var thisWidth = $('.popoverHover').width();
        var thisHeight = $('.popoverHover').height();
        $('.popoverHover').css({ 'left': (mouseX - Math.floor(thisWidth / 2) - 10) + 'px', 'top': (mouseY - 20 - thisHeight) + 'px' });
    });

    $('.hoverText').mouseover(function() {
        $('.popoverHover').html($(this).attr('title'));
        $('.popoverHover').show();
    });

    $('.hoverText').mouseout(function() {
        $('.popoverHover').html('');
        $('.popoverHover').hide();
    });

});
