
$(document).ready(function () {
	$("#wysuwany_div").click(function() {
		$(this).stop().animate({right: "0"},290);
	});
	
	$("#wysuwany_div").mousedown(function() {
		$(this).stop().animate({right: "-290px"}, 290);
	});
})
