﻿$(document).ready(function() {
    $("a.tooltiplnk").tooltip({
        bodyHandler: function() {
            var theID = $(this).attr("TID");

            var type = $(this).attr("TT");
            var f

            if (type == "nws") { f = "GetNewsToolTip"; }
            else if (type == "inv") { f = "GetInvestigationToolTip"; }
            else if (type == "rec") { f = "GetRecommendationToolTip"; }
            else if (type == "vid") { f = "GetVideoToolTip"; }
            else if (type == "evt") { f = "GetEventToolTip"; }

            if (theID) {
                if (f) {
                    var html = $.ajax({ url: "/ajax.aspx?f=" + f + "&id=" + theID, async: false }).responseText;
                    return html;
                }
                else { return ""; }
            } else { return ""; }
        },
        showURL: false,
        track: true
    });
});