$(document).ready(function(){

  $('input[type=reset]').click(function(){
    $('input[type=radio]').attr('checked', '');
    return false;    
  });
  
  $('td.preis input.radio').click(function(){
    var angebot = $(this).parents('tr').attr('id');
    if($('td.' + angebot + ' input:checked').size() == 0) $('td.' + angebot).addClass('err');
  });
  
  $('td.check input.radio').click(function(){
    var angebot = $(this).parent('td').attr('rel');
    //alert(angebot);
    $('td.' + angebot).removeClass('err');
  });

});
