$(function() {
	
	// Succes
	setTimeout(function() { 
		$("#succes").fadeOut(); 
	}, 2500);
	
	// Error
	setTimeout(function() { 
		$("#error").fadeOut(); 
	}, 2500);
	
});

