Make tooltip follow the mouse while the target is hovered

Make tooltip follow the mouse while the target is hovered

This is the code I have


    <script src="<?php bloginfo('template_url'); ?>/jquery.js" type="text/javascript"></script>


    <script type="text/javascript">
    <!--


    $(function () {
        $('.bubbleInfo').each(function () {
            var distance = 10;
            var time = 250;
            var hideDelay = 500;

            var hideDelayTimer = null;

            var beingShown = false;
            var shown = false;
            var trigger = $('.trigger', this);
            var info = $('.popup', this).css('opacity', 0);


            $([trigger.get(0), info.get(0)]).mouseover(function () {
         


                if (hideDelayTimer) clearTimeout(hideDelayTimer);
                if (beingShown || shown) {
                    // don't trigger the animation again
                    return;
                } else {
                    // reset position of info box
                    beingShown = true;

                    info.css({

                        top: [b]pageY[/b],
                        left: [b]pageX[/b],

                        display: 'block'
                    }).animate({
                        top: '-=' + distance + 'px',
                        opacity: 1
                    }, time, 'swing', function() {
                        beingShown = false;
                        shown = true;
                    });
            
                }

                return false;
            }).mouseout(function () {
                if (hideDelayTimer) clearTimeout(hideDelayTimer);
                hideDelayTimer = setTimeout(function () {
                    hideDelayTimer = null;
                    info.animate({
                        top: '-=' + distance + 'px',
                        opacity: 0
                    }, time, 'swing', function () {
                        shown = false;
                        info.css('display', 'none');
                    });

                }, hideDelay);

                return false;



            });
        });
    });



   
    //-->
    </script>



I have googled and I've understood that this piece of code (somewhere?) should work. The problem is that I have no idea where to put it and nothing I've tried works ^^ The bold text in the code above is where I guess the calculated x and y should go. Please help me.

$().mousemove(function(e){

                        e.pageY
                        e.pageX

});