/* 
 * Wysuwany box z likeit Facebookowym.
 * 
 */

 $(function(){
 
    $("#wysuwane").css("right","-239px");
 
$("#wysuwane").hover(
  function () {
    $("#wysuwane").animate({right: "0px"}, {queue:false, duration: 500} );
       
  },
  function () {
    $("#wysuwane").animate({right: "-239px"},{queue:false, duration: 500} );
       
        
  }
);
});
