If your buttons are grouped by their name attribute, try:
$("input:radio[name=groupName][disabled=false]:first").attr('checked', true);
If they are grouped by a parent container, then:
$("#parentId input:radio[disabled=false]:first").attr('checked', true);