$(document).ready(function() {
  $('#button-menu').click(function() { 
    if($('#menu-tomorrow').css("display") == "none") {
      $('#menu-today').slideUp(300).hide().delay(1000);
      $('#menu-tomorrow').slideDown(300);
      $('#button-menu').html(">> dnešní menu");
      $('#block-title').html("zítřejší polední menu");
    } else {
      $('#menu-tomorrow').slideUp(300).hide().delay(1000);;
      $('#menu-today').slideDown(300);
      $('#button-menu').html(">> zítřejší menu");
      $('#block-title').html("dnešní polední menu");
    }
  });
  $('#menu-list h2').click(function() {
    $('#menu-list table').slideUp(300).hide().delay(100);;
    if($(this).next('table').css('display') == 'none') $(this).next('table').slideDown(300);
  });    
  $('#menu-list h2').hover(
    function() { $(this).css('color','black'); },
    function() { $(this).css('color','rgb(122,32,8)'); }
  ); 
});
