function swaptype(voicetype) {
    if (voicetype == 0) {
        $("#ventriloiconselection").hide();
        $("#mohawkiconselection").show();
        $("#ventriloselection").hide();
        $("#mohawkselection").show();
        $("#ventrilo_list").hide();
        $("#mohawk_list").show();
    } else {
        $("#ventriloiconselection").show();
        $("#mohawkiconselection").hide();
        $("#ventriloselection").show();
        $("#mohawkselection").hide();
        $("#ventrilo_list").show();
        $("#mohawk_list").hide();
    }
}