﻿$(function () {

    new Image(25, 25).src = "/img/ajax-loader.gif";
    $(".invite-link").live("mouseover", function () {
        $("div.inviteBlock").css({ top: $(this).offset().top + 17, left: $(this).offset().left - 120, zIndex: 100000 }).fadeIn(800);

    }).live("mouseout", function () {
        var cs = $("div.inviteBlock");
        if (typeof cs.data("timer") != "undefined") {
            clearTimeout(cs.data("timer"));
            cs.removeData("timer");
        }
        cs.data("timer", setTimeout(function () {
            cs.fadeOut(1000);
        }, 1500));
    });

    $("div.inviteBlock").live("mouseover", function () {
        clearTimeout($(this).data("timer"));

    }).live("mouseout", function () {
        var cs = $(this);
        clearTimeout(cs.data("timer"));
        cs.removeData("timer");
        cs.data("timer", setTimeout(function () {
            $("div.inviteBlock").fadeOut(1000);
        }, 1500));
    });


});



