function show_agency() {
    $("#show-text").hide();
    $("#show-community").hide();
    $("#show-agency").show();
}

function show_community() {
    $("#show-text").hide();
    $("#show-community").show();
    $("#show-agency").hide();
}

function show_text() {
    $("#show-text").show();
    $("#show-community").hide();
    $("#show-agency").hide();
}

