$(document).ready(function() 
{
  $('#flash').fadeIn('slow');
  
  $('#flash').animate({opacity: 1.0}, 3000);
    
	setTimeout(function() { $('#flash').fadeOut('slow'); }, 6000);
  
});
