function swaptype(voicetype) {
    if (voicetype == 0) {
        $("#teamspeakiconselection").show();
        $("#teamspeakselection").show();
        $("#teamspeak_list").show();

        $("#ventrilo_list").hide();
        $("#ventriloselection").hide();
        $("#ventriloiconselection").hide();

        $("#mohawk_list").hide();
        $("#mohawkselection").hide();
        $("#mohawkiconselection").hide();
    } else if (voicetype == 1) {
        $("#teamspeakiconselection").hide();
        $("#teamspeakselection").hide();
        $("#teamspeak_list").hide();

        $("#ventrilo_list").show();
        $("#ventriloselection").show();
        $("#ventriloiconselection").show();

        $("#mohawk_list").hide();
        $("#mohawkselection").hide();
        $("#mohawkiconselection").hide();
    } else if (voicetype == 2) {
        $("#teamspeakiconselection").hide();
        $("#teamspeakselection").hide();
        $("#teamspeak_list").hide();

        $("#ventrilo_list").hide();
        $("#ventriloselection").hide();
        $("#ventriloiconselection").hide();

        $("#mohawk_list").show();
        $("#mohawkselection").show();
        $("#mohawkiconselection").show();
    }
}