// JavaScript Document
function getMainSection() {
    var URL = window.location.href.toLowerCase();
    if (URL.indexOf('Member') != -1) {
        return '';
    }
    if (URL.indexOf('download') != -1) {
        return 'download';
    }
    if (URL.indexOf('overview') != -1) {
        return 'overview';
    }
    if (URL.indexOf('screenshots') != -1) {
        return 'screenshots';
    }
    if (URL.indexOf('testimonials') != -1) {
        return 'testimonials';
    }
    if (URL.indexOf('faq') != -1) {
        return 'faq';
    }
    if (URL.indexOf('support') != -1) {
        return 'support';
    }
    if (URL.indexOf('default') != -1) {
        return 'home';
    }
    return '';
}

function DoNavigation() {
    var oSection = document.getElementById("menu-tab-" + getMainSection() + "-a");
    if (oSection != null) {
        oSection.style.background = "url(/Images/Navigation/Menu/Tab/Registryconvoy_tab_on.gif)";
    }
}