
$(window).ready(function() {
  
  if ($("input[name=typ]").val()=='podnikatel')
    enableInvoice();
  else
    disableInvoice();
  
  $("input[name=typ]").click(function() {
    if ($(this).val() == 'podnikatel') enableInvoice();
    else disableInvoice();
  }).change(function() {
    //$(this).trigger('click');
  });
  
  var poznDsbl = $("input", $("#u1")).attr('disabled');
  $("#poznamka").keyup(function() {
    if ($(this).val() == 'ipvvip') {
      $("#u1").css({'color': 'FFFF00', 'font-weight': 'bold'});
      $("input", $("#u1")).attr('disabled', '');
      poznDsbl = $("input", $("#u1")).attr('disabled');
    }
    else {
      $("#u1").css({'color': 'FFF', 'font-weight': 'normal'});
      $("input", $("#u1")).attr('disabled', poznDsbl);
    }
  });

});

function disableInvoice() {
  $("#fakturace p").each(function() {
    $("input", this).attr('disabled','disabled');
    $(this).css('color', '#ddd');
  });
}

function enableInvoice() {
  $("#fakturace p").each(function() {
    $("input", this).attr('disabled','');
    $(this).css('color', '#fff');
  });
}


