////----------------------------------------------------------------
//$(document).ready(function() {
//    $("td.tipLink").hover(function() {
//        if ($(".tipster", this).css("display") == "block") { return false; }
//        os = $(this).position();
//		offHeight = parseInt($(".tipster", this).height());
//        $(".tipster", this).css({top: os.top-offHeight-10+"px", left: os.left}).animate({top: os.top-offHeight+"px", opacity: "show"}, 300);
//    },
//    function() {
//        os = $(this).position();
//        $(".tipster", this).animate({top: os.top-offHeight+"px", opacity: "hide"}, 100);
//    });
//});
$(document).ready(function() {
    $("td.tipLink").click(function() {
        if ($(".tipster", this).css("display") == "block") { return true; }

        $(".tipster").animate({ top: "0px", opacity: "hide" }, 0);

        os = $(this).position();
        offHeight = parseInt($(".tipster", this).height());
        $(".tipster", this).css({ top: os.top - offHeight - 10 + "px", left: os.left }).animate({ top: os.top - offHeight + "px", opacity: "show" }, 300);
    });
    $("div.closeTipster").click(function() {
        os = $(this).parent().parent().position();
        $(this).parent().animate({ top: os.top - offHeight + "px", opacity: "hide" }, 100);
    });
});
