// show and hide
$(document).ready(function() {

// timeout for the message is 20 secounds
	setTimeout(hideLoad, 20000); 
	function hideLoad(){
		$('#genericError').hide('slow');
	}
	
	// hide function onClick
	$("#genericError").click(function() {   $('#genericError').hide('slow');   });

});