flashCommunicationClose = function()
{
  jQuery('div.statement a.close').click( function()
  {
    var flash_id = jQuery(this).parent().attr('id');
   
    flash_id = flash_id.split('_')[1];
    jQuery(this).parent().hide();
    
    var new_flash_id = parseInt(flash_id) + 1;
  
    jQuery('div#flash_' + new_flash_id).show();
    jQuery.get(jQuery(this).attr('href'));
    
    return false;
  });
}

