$(document).ready(function (){
		//facebook widget
		$("#wysuwany_div").hover(function(){
			$("#wysuwany_div").stop(true, false).animate({left:"0"},"medium");
		},function(){
			$("#wysuwany_div").stop(true, false).animate({left:"-292"},"medium");
		},500);
 
		return false;
	});

