/**
Vertigo Tip by www.vertigo-project.com
Requires jQuery
*/

this.vtip = function() {
    this.xOffset = -220; // x distance from mouse
    this.yOffset = 30; // y distance from mouse       

    $(".vtip").unbind().hover(
        function(e) {
            this.title = '';
            var t = 'Download vCard!'; //'Clicca qui per scaricare il mio biglietto da visita';// 'Click here to download my vCard!';

            this.top = (e.pageY + yOffset); this.left = (e.pageX + xOffset);

            $('body').append('<p id="vtip">' + t + '</p>');

            $('p#vtip').css("top", this.top + "px").css("left", this.left + "px").fadeIn("slow");


        },
        function() {
            this.title = this.t;
            $("p#vtip").fadeOut("slow").remove();
        }
    ).mousemove(
        function(e) {
            this.top = (e.pageY + yOffset);
            this.left = (e.pageX + xOffset);

            $("p#vtip").css("top", this.top + "px").css("left", this.left + "px");
        }
    );

};

jQuery(document).ready(function($){vtip();}) 