/**
 * Debugowanie obiektów jQueryObject
 * @return jQueryObject
 */
(function($) {
	$.fn.debug = function(message)
	{
		this.each(function(){
			$(this).css("border", "1px dashed #F00");
		});
	};
})(jQuery);
