temp-set-checked
HTML
<input type="radio" name="test" class="one" value='good'/>Отлично
<input type="radio" name="test" class="two" value='not bad'/>Неплохо
JavaScript
$('.one').attr('checked', true);
setTimeout(function() {
$('.two').attr('checked', true);
}, 5000)