$(document).ready(function(){
/*
   $("#menu a").mouseover(function(){
      $(this).animate({'top':'-7px'},300);
   });
   $("#menu a").mouseout(function(){
      $(this).stop();
      $(this).animate({'top':'0px'},300);
   });
*/
   $(".ramka_zdjecie img").mouseover(function(){
      $(this).animate({'opacity':'0.7'},200);
   });
   $(".ramka_zdjecie img").mouseout(function(){
      $(this).stop();
      $(this).animate({'opacity':'1.0'},200);
   });
});
