$(document).ready(function() {
    $('.radio :radio').focus(updateSelectedStyle);
    $('.radio :radio').blur(updateSelectedStyle);
    $('.radio :radio').change(updateSelectedStyle);
})

function updateSelectedStyle() {
    $('.radio :radio').removeClass('focused').next().removeClass('focused');
    $('.radio :radio:checked').addClass('focused').next().addClass('focused');
}

getTwitters('qikfittwitters', { 
      id: 'qikfit', 
      clearContents: true, 
      count: 1, 
      withFriends: true,
      ignoreReplies: false,
      newwindow: true,
      template: '<div class="status">%text%</div> <div class="time"><a href="http://twitter.com/%user_screen_name%" target="_new">@%user_screen_name%</a> %time%</div>'
      //template: '<span class="prefix"><img height="16" width="16" src="%user_profile_image_url%" /> <a href="http://twitter.com/%user_screen_name%">%user_name%</a> said: </span> <span class="status">"%text%"</span> <span class="time"><a href="http://twitter.com/%user_screen_name%/statuses/%id%">%time%</a></span>'

});

