If you are trying to split your index file into 3: header, index, footer
Index.php should have:
<?php include('wp-includes/header.php') ?>
<?php include('posts.php') ?>
<?php include('wp-includes/footer.php') ?>
The file in the middle can be whatever you want to appear between the header and footer.
Header.php should be everything from(and including) the <div id="content">
up
and the footer should be from
</div>
<div id="menu">
To the end