$(document).ready(function()
  {
   $("img.menu_obrazek_gora").mouseover(function()
     {
      $(this).fadeTo(150,0);
     });
  });

$(document).ready(function()
  {
   $("img.menu_obrazek_gora").mouseout(function()
     {
      $(this).fadeTo(150,1);
     });
  });
