﻿
 jQuery(function(){
 
    jQuery("#wysuwane").css("right","-300px");
 
jQuery("#wysuwane").hover(
  function () {
    jQuery("#wysuwane").animate({right: "0px"}, 500 );
        jQuery(this).addClass("zamknij");
  },
  function () {
    jQuery("#wysuwane").animate({right: "-300px"}, 500 );
        jQuery(this).removeClass("zamknij");
  }
);
});
