$(document).ready(function(){
    //mask phone input
    $(".phone").mask("(999) 999-9999? 9999",{placeholder:" "});

    //controls whether to mask phone
    $(".nophone").change(function(){
        if($(this).attr("checked")){
            $(".phone").each(function(){
                $(this).unmask();
            });
        }else{
            $(".phone").each(function(){
                $(this).mask("(999) 999-9999? 9999",{placeholder:" "});
            });
        }
    });

    $(".tablesort").tablesorter();
});