$('.hornet.dialog.modal').concrete({
  close: function() {
    $(this).remove();
    $('.hornet.modal.top').remove();
    $('.hornet.modal.blocker').remove();
  }
});

$('.hornet.dialog.modal > a.close').concrete({
  onclick: function() {
    $(this).closest('.hornet.dialog.modal').close();
    return false;
  }
});