// pass in jQuery so we can use $ shortcut
(function($) {
	$.fn.flash = function() {
		return this.each(function() {
			$(this).hide().fadeIn("slow");
		});
	};
})(jQuery);