$(function(){
/* rezervace - pokoje */
    $('#pokoje tr td input[name^="pocet_check"]').each(function(){
      var volba = false;
      if($(this).is(":checked")) volba = true;
      
      if(volba) {
        $(this).parent().next().next().children().removeAttr("disabled");
      } else {
        $(this).parent().next().next().children().attr("disabled","disabled");
      }
    });
    $('#pokoje tr td input[name^="pocet_check"]').live("click", function(){
      var volba = false;
      if($(this).is(":checked")) volba = true;
      
      if(volba) {
        $(this).parent().next().next().children().removeAttr("disabled");
      } else {
        $(this).parent().next().next().children().attr("disabled","disabled");
      }
    });
});
