$(document).ready(ondrej_init);
function ondrej_init(){

  //IE BUG image in a label
  $("label img").live("click", function() {
    $("#" + $(this).parents("label").attr("for")).click();
  });

  $('table.attributes input:radio').live("click", function(){
    //alert('ahoj');
    $("table.attributes TD").removeClass('checked');//remove all styles
    $(this).parent().parent("td").addClass('checked'); //change style
  });
  
  $('table.attributes input:radio:checked').parent().parent("td").addClass('checked');//check default radio button

}

