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();
		
        $("#mumble_list").hide();
        $("#mumbleselection").hide();
        $("#mumbleiconselection").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();
		
        $("#mumble_list").hide();
        $("#mumbleselection").hide();
        $("#mumbleiconselection").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();
		
        $("#mumble_list").hide();
        $("#mumbleselection").hide();
        $("#mumbleiconselection").hide();
    }
	else if (voicetype == 3)
	{
        $("#teamspeakiconselection").hide();
        $("#teamspeakselection").hide();
        $("#teamspeak_list").hide();

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

        $("#mohawk_list").hide();
        $("#mohawkselection").hide();
        $("#mohawkiconselection").hide();
		
        $("#mumble_list").show();
        $("#mumbleselection").show();
        $("#mumbleiconselection").show();
    }
}
