$(document).ready(function() {
    var strCityName = "National";
    var Environment = "prod";
    
    var arCitiesToHide = ["Charlotte", "Raleigh", "Toronto", "Nutley", "Wallington", "Lynchburg", "Winchester", "Waco", "Norman", "Oklahoma City", "South San Jose", "Lawton", "Hadley", "Cupertino", "Alexandria", "Casa Grande", "Mesa", "Phoenix", "Chandler", "Lee's Summit" ];

    if ($("#divToHideID").length > 0) {
        if (jQuery.inArray(strCityName, arCitiesToHide) > -1) {
            $("#divToHideID").hide(); //hides the div
            $("#hidepop").hide(); //hides the div
        } else {
            $("#divToHideID").show();  //shows the div
            $("#hidepop").show(); //shows the div
        }
    }

    if ($("#divShowIDCN").length > 0) {
        switch (strCityName) {
            case "Toronto":
                $get("#divShowIDCN").show(); //shows the div
                break;
            default:
                $get("#divShowIDCN").hide(); //shows the div
        }
    }


    if ($("#hidemap").length > 0) {
        switch (strCityName) {
            case "National":
                $("#hidemap").hide(); //shows the div
                break;
            default:
                $("#hidemap").show(); //shows the div
        }
    }

});