// This script works in: Navigator 3 - 4, Opera 3.1, and Explorer 4
    // tested 07apr16 on FF, Safari & Mozilla for Mac + IE 6, IE 7 & FF for PC

    function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "_on.src");
        }
    }

    function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "_off.src");
        }
    }





    if (document.images) {
        solutionFinder_on = new Image(); // Active images
        solutionFinder_on.src = "../../images/nav-bar/globalnav_solution-finder_on.gif";
        solutionFinder_off = new Image(); // Inactive images
        solutionFinder_off.src = "../../images/nav-bar/globalnav_solution-finder_off.gif";

        platformDevice_on = new Image(); // Active images
        platformDevice_on.src = "../../images/nav-bar/globalnav_platform-device_on.gif";
        platformDevice_off = new Image(); // Inactive images
        platformDevice_off.src = "../../images/nav-bar/globalnav_platform-device_off.gif";

        industry_on = new Image(); // Active images
        industry_on.src = "../../images/nav-bar/globalnav_industry_on.gif";
        industry_off = new Image(); // Inactive images
        industry_off.src = "../../images/nav-bar/globalnav_industry_off.gif";

        allSolutions_on = new Image(); // Active images
        allSolutions_on.src = "../../images/nav-bar/globalnav_all-solutions_on.gif";
        allSolutions_off = new Image(); // Inactive images
        allSolutions_off.src = "../../images/nav-bar/globalnav_all-solutions_off.gif";

        type_on = new Image(); // Active images
        type_on.src = "../../images/nav-bar/globalnav_type_on.gif";
        type_off = new Image(); // Inactive images
        type_off.src = "../../images/nav-bar/globalnav_type_off.gif";

        whatsNew_on = new Image(); // Active images
        whatsNew_on.src = "../../images/nav-bar/globalnav_whats-new_on.gif";
        whatsNew_off = new Image(); // Inactive images
        whatsNew_off.src = "../../images/nav-bar/globalnav_whats-new_off.gif";

       /* begin sales view rollovers */

        solutionFinderSales_on = new Image(); // Active images
        solutionFinderSales_on.src = "../../images/nav-bar/globalnav-sales_solution-finder_on.gif";
        solutionFinderSales_off = new Image(); // Inactive images
        solutionFinderSales_off.src = "../../images/nav-bar/globalnav-sales_solution-finder_off.gif";

        platformDeviceSales_on = new Image(); // Active images
        platformDeviceSales_on.src = "../../images/nav-bar/globalnav-sales_platform-device_on.gif";
        platformDeviceSales_off = new Image(); // Inactive images
        platformDeviceSales_off.src = "../../images/nav-bar/globalnav-sales_platform-device_off.gif";

        industrySales_on = new Image(); // Active images
        industrySales_on.src = "../../images/nav-bar/globalnav-sales_industry_on.gif";
        industrySales_off = new Image(); // Inactive images
        industrySales_off.src = "../../images/nav-bar/globalnav-sales_industry_off.gif";

        allSolutionsSales_on = new Image(); // Active images
        allSolutionsSales_on.src = "../../images/nav-bar/globalnav-sales_all-solutions_on.gif";
        allSolutionsSales_off = new Image(); // Inactive images
        allSolutionsSales_off.src = "../../images/nav-bar/globalnav-sales_all-solutions_off.gif";

        typeSales_on = new Image(); // Active images
        typeSales_on.src = "../../images/nav-bar/globalnav-sales_type_on.gif";
        typeSales_off = new Image(); // Inactive images
        typeSales_off.src = "../../images/nav-bar/globalnav-sales_type_off.gif";

        whatsNewSales_on = new Image(); // Active images
        whatsNewSales_on.src = "../../images/nav-bar/globalnav-sales_news_on.gif";
        whatsNewSales_off = new Image(); // Inactive images
        whatsNewSales_off.src = "../../images/nav-bar/globalnav-sales_news_off.gif";

    }
