jQuery(document).ready(function() {

  $('#contest-form .q-response').each(function(){

    var ctx = $(this).parent('.q-wrapper');

    $('input',this).css({ position: "absolute", margin: "0 0 0 -9999px" });

    if( $('input[@checked]',this).size() == 1 ) {
      $(this).addClass('ticked');
    }

    $(this).click(function(){

      $('input',ctx).attr('checked',undefined);
      $('input',this).attr('checked','checked');

      $('.q-response.ticked',ctx).removeClass('ticked');
      $(this).addClass('ticked');
      $('.error',ctx).remove();

    });

  });

});