$(document).ready(function() {
	$('.flash-error').click(function(){  
		$(this).animate({opacity: 1.0}, 1).fadeOut();  
		return false;  
	});  
  
	$('.flash-good').click(function(){  
		$(this).animate({opacity: 1.0}, 1).fadeOut();  
		return false;  
	});  
  
	$('.flash-good').animate({opacity: 1.0}, 5000).fadeOut();  
 
});
