I havent tried it myself , so you may need some more input , but I believe you could :
look at the file tpl_index_default.php
find the line
Code:
<div id="indexDefaultMainContent" class="content"><?php require($define_page); ?></div>
and copy and paste it further down that page between the New and featured ( the page is well commented )
change the require bit to <?php require($define_page2)
then look at the file :
includes/modules/pages/index/header_php.php
Code:
Line #42 : $define_page = zen_get_file_directory(DIR_WS_LANGUAGES . $_SESSION['language'] . '/html_includes/', FILENAME_DEFINE_MAIN_PAGE, 'false');
and copy and paste again and change the start to the same as you called the other define ($define_page2) also FILENAME_DEFINE_MAIN_PAGE2
so
Code:
$define_page2 = zen_get_file_directory(DIR_WS_LANGUAGES . $_SESSION['language'] . '/html_includes/', FILENAME_DEFINE_MAIN_PAGE2, 'false');
then define the page name in ../includes/filenames.php
Code:
define('FILENAME_DEFINE_MAIN_PAGE2', 'define_main_page2');
then place the file you want included in the html_include dir.
as I said I HAVE NOT TESTED THIS - BACKUP FIRST !