
function ShowSectionMenu(item) {
    $(document).ready(function() {
        if (item == "") {
            item = jQuery.url.attr("file");
            item = item.substring(0, item.lastIndexOf(".aspx"));
        }
        if (item != "Default") {
            document.getElementById(item + "Link").style.color = "#FFFFFF";
            document.getElementById(item + "Link").style.backgroundColor = "#00457C";
        }
    });
}

function HideSectionMenu(item) {
    $(document).ready(function() {
        if (item == "") {
            item = jQuery.url.attr("file");
            item = item.substring(0, item.lastIndexOf(".aspx"));
        }
        if (item != "Default") {
            document.getElementById(item + "Link").style.color = "#00457C";
            document.getElementById(item + "Link").style.backgroundColor = "#FFFFFF";
        }
    });
}

$(document).ready(function() {
    ShowSectionMenu('');

    if ($.browser.msie) {
        // do nothing
    } else if ($.browser.safari) {
        $(".tablePageFooter").css("top", "460px");
    } else if ($.browser.mozilla) {
        $(".tablePageFooter").css("top", "475px");
    }
});