jQuery.fn.fadeToggle = function(speed, easing, callback) {
	return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback);
};

$(function() { 
	$("#polecane").hide();
    $("#guzik").click(function () {
		$("#polecane").fadeToggle('fast');
	});
});  
