 $(document).ready(function(){

  


  // click response for day calendar
  $(".box-rychlevyhledavani a.table-minibutton-wide, .box-rychlevyhledavani a.table-minibutton-small").toggle(
       function(){
         $(this).addClass('selected');
         var id = $(this).attr('id');
         $("input[name='"+id+"']").val('1');
       },
       function() {
         $(this).removeClass('selected');
         var id = $(this).attr('id');
         $("input[name='"+id+"']").val('0');
       }
   );
  



 });
