$(function() {
	$('.flash')
		.css("cursor", "pointer")
		.click(function() {
			$(this).fadeOut("slow");
		})
		;
});
