
;$(function(){

	$("#wysuwane_facebook").css("left","-210px");

$("#wysuwane_facebook").hover(
  function () {
    $("#wysuwane_facebook").animate({left: "0px"}, 400 );
		$(this).addClass("zamknij");

  },
  function () {
    $("#wysuwane_facebook").animate({left: "-210px"}, 400 );
		$(this).removeClass("zamknij");

  }
);


});
;

