Unset Radio Button jQuery por nome

$("input:radio[name='thename']").each(function(i) {
       this.checked = false;
});
Drab Dogfish