
function ShowSectionMenu() {
    $(document).ready(function() {
        // Find current Directory
        var NavSection = jQuery.url.segment(0);

        var SubNavSection = NavSection + "Sub";
       
        ShowSubMenu(NavSection, SubNavSection);
    });
}

function HideSectionMenu() {
    $(document).ready(function() {
        // Find current Directory
        
        var NavSection = jQuery.url.segment(0);

        var SubNavSection = NavSection + "Sub";

        HideSubMenu(NavSection, SubNavSection);
    });
}

function ShowSubMenu(item,subitem) {
    // Hide previous submenus
    HideSectionMenu();
    // Show current submenu
    document.getElementById(item + "Link").style.color = "#00457C";
    document.getElementById(item + "Link").style.backgroundColor = "#FFFFFF";
    document.getElementById(subitem).style.color = "#00457C";
    document.getElementById(subitem).style.backgroundColor = "#FFFFFF";
    document.getElementById(subitem).style.display = "block";
}

function HideSubMenu(item,subitem) {
    // Hide current submenus
    document.getElementById(item + "Link").style.color = "#FFFFFF";
    document.getElementById(item + "Link").style.backgroundColor = "#00457C";
    document.getElementById(subitem).style.display = "none";
}
    

$(document).ready(function() {
    // get directory path
    var NavSectionPath = jQuery.url.attr('path');
    NavSectionPath = NavSectionPath.toLowerCase();
    // if Home page
    if (NavSectionPath != "default.aspx") {
    
        // On load Show menu
        ShowSectionMenu();
        
        if (!$.browser.msie) {
            // Add extra space for non-ie browsers
            $(".MenuSub").prepend("<br /><br />");
        }
    }
});