(function($) {
	$.fn.fadeAdd = function() {

		$('<div />')
			.appendTo(this)
			.addClass('ajax-fade');
		
		return this;
	};
	
	$.fn.fadeRemove = function() {

		$(this).find('.ajax-fade').remove();

		return this;
	};
})(jQuery)
