$(document).ready(function(){   
    
  $(".menuPolozka").hover(function()
  {
    $(this).animate({ backgroundColor: "rgb(244,16,27)", color: "white" }, 300);
  },
  function()
  {
    $(this).animate({ backgroundColor: "rgb(200,200,200)", color: "rgb(90,90,90)" }, 300);
  }
  );     
  
  //$(".produktyTh").hide();
  var pozadie;
  $(".produktyPolozka").hover(function()
  {
    $(this).stop();
    pozadie = $(this).css("background-color");    
    $(this).animate({ backgroundColor: "rgb(140,140,140)", color: "white" }, 300);
  },
  function()
  {
    $(this).stop();
    $(this).animate({ backgroundColor: pozadie, color: "black" }, 300);
  }
  );  
  
  //posunut Kontakt doprava
  $(".menuLista table tr td:last").css("position","absolute").css("left", (screen.width) * 0.80 + 5);
    
  //pousnut authora do rozka
  $("#author").css("top",screen.height - 240);
  $("#author").css("left",screen.width - 150);
});
