Check first radio button with JQuery
$("input:radio[name=groupX]:not(:disabled):first")
This should give you the first non-disabled radio-button from a group...
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);