$('.hornet.flash').concrete({
  onmatch: function() {
    flash = $(this);
    setTimeout(function() {
      flash.fadeOut('slow', function() {
        flash.remove();
      });
    }, 3000);
  },
  onclick: function() {
    $(this).fadeOut('slow', function() {
      $(this).remove();
    });
  }
});