Adds content to a specified region.
$region: Page region the content is added to.
$data: Content to be added.
function drupal_add_region_content($region = NULL, $data = NULL) {
static $content = array();
if (isset($region) && isset($data)) {
$content[$region][] = $data;
}
return $content;
}