$(function() {

    if ($("#county-map").length) {
        $("#countymap-north").click(function() {
            $("#countymap-wrap").css("background-position", "0 0");
            $("#county-map li").hide();
            $("#county-map li.north-office").show();
        });
/*
        $("#countymap-west").click(function() {
            $("#countymap-wrap").css("background-position", "0 -450px");
            $("#county-map li").hide();
            $("#county-map li.west-office").show();
        });
*/
        $("#countymap-south").click(function() {
            $("#countymap-wrap").css("background-position", "0 -450px");
            $("#county-map li").hide();
            $("#county-map li.south-office").show();
        });

        $("#countymap-north").click();
    }

    if ($("#contactagent-state").length) {
        $("#contactagent-state ul").hide();
        $("#contactagent-state").click(function(e) {
            if ($(e.target).attr("class") == "state-link") {
                $("#contactagent-state ul").hide();
                $(e.target).next("ul").show(); return false;
            }
        });
    }

    $("#sidemenu #phonenumbers").after("<strong>Office Hours</strong><br />Monday - Friday<br />8:15 a.m. - 4:30 p.m.");
    $(".about-contactus #main_content h1").text("Contact FPIC");
    $('.about-contactus #main_content .formsection .privacy span.required').html('I have read and understand the <a href="/TermsOfUse" target="_blank" title="Terms of Use">Terms of Use</a>.');
});
