$(function(){
  $('a[rel="lightbox"]').each(function(){
    if($(this).next().attr("class")=='lightbox_target') {
     $(this).attr("href",$(this).next().attr("value"));
    }
  });
      
  $('a[rel="lightbox"]').lightBox({fixedNavigation:true});

  
  $('.volba-data').datePicker();
  
/* rezervace - formulář - efekty */
  $('#form_send').hide();
  $('#form_send_btn').show();
  
  $('#form_send_btn').click(function(){
    $(this).hide().after("... <img src=\"./img/ajax-loader.gif\" alt=\"Počkejte prosím...\" />");
    $('#formular').submit();
   
  });
/* 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");
      }
    });
});
