﻿function setSelectedLeftNavMenu(pageType) {
    if (pageType == "Home") {
        document.HomeLeftNav.src = "/images/home_selected.gif";
        group('init','group1','HomeLeftNav','/images/home.gif',1);
    }
    else if (pageType == "SolarThermal") {
        document.SolarThermalLeftNav.src = "/images/solarthermal_selected.gif";
        group('init','group1','SolarThermalLeftNav','/images/solarthermal.gif',1);
    }
    else if (pageType == "Wind") {
        document.WindLeftNav.src = "/images/wind_selected.gif";
        group('init','group1','WindLeftNav','/images/wind.gif',1);
    }
    else if (pageType == "SolarElectric") {
        document.SolarElectricLeftNav.src = "/images/solarelectric_selected.gif";
        group('init','group1','SolarElectricLeftNav','/images/solarelectric.gif',1);
    }
    else if (pageType == "Incentives") {
        document.IncentivesLeftNav.src = "/images/incentives_selected.gif";
        group('init','group1','IncentivesLeftNav','/images/incentives.gif',1);
    }
    else if (pageType == "ContactUs") {
        document.ContactUsLeftNav.src = "/images/contactus_selected.gif";
        group('init','group1','ContactUsLeftNav','/images/contactus.gif',1);
    }
    else if (pageType == "AboutUs") {
        document.AboutUsLeftNav.src = "/images/aboutus_selected.gif";
        group('init','group1','AboutUsLeftNav','/images/aboutus.gif',1);
    }
    else if (pageType == "Links") {
        document.LinksLeftNav.src = "/images/links_selected.gif";
        group('init','group1','LinksLeftNav','/images/links.gif',1);
    }
}

function switchFontColor(theelement, status) {
    if (status == 'hover') {
        theelement.color = "#000066";
    }
    if (status == 'out') {
        theelement.color = "gray";
    }                
}

