$(function() {
    try { document.execCommand("BackgroundImageCache", false, true); }
    catch (e) { }

    $(".MainMenu > ul > li").append("<span class='Dot'></span>");
    $(".MainMenu ul ul li a").prepend("[+] ");

    if ($(".Conjuncture").length) {
        $.getScript("/os.conjunctuur/script/conjunctuurklok.js");
    }

    $("table.QListPanel tr:has(td a)").css("cursor", "pointer").click(function(e) {
        var tmp_oLink = $(e.target).parents("tr").find("a").eq(0);
        if (tmp_oLink.length) document.location.href = tmp_oLink.attr("href");
    });
})

