(function($){
	jQuery.fn.fadeAway = function() {
		$(this).fadeTo('slow', 0.01).slideUp('slow');
		return this;
	};
})(jQuery);

