	jQuery(function(){
 
	jQuery("#wysuwane").css("left","-310px");

jQuery("#wysuwane").hover(
  function () {
    jQuery("#wysuwane").animate({left: "0px"}, 400 );
		jQuery(this).addClass("zamknij");
		
  }, 
  function () {
    jQuery("#wysuwane").animate({left: "-310px"}, 400 );
		jQuery(this).removeClass("zamknij"); 
		
  }
);


});
