$(function(){
 
$("#lerto_wysuwane").css("right","-210px");
 
$("#lerto_wysuwane").hover(
  function () {
$("#lerto_wysuwane").animate({right: "0px"}, 1000 );
$(this).addClass("lerto_zamknij");
  },
  function () {
$("#lerto_wysuwane").animate({right: "-210px"}, 1000 );
$(this).removeClass("lerto_zamknij");
  }
);});
