It is sort of a PHP and XHTML question. So here is how you can go about it. Create your pages with the following format or comparable. The following would be index.php
Code:
<?php include("header.inc"); ?>
<body>
<div id="nav">
<?php include("nav.inc"); ?>
</div>
</body>
<?php include("footer.inc"); ?>
Save your header file as .inc
Code:
<html>
<head>
<title></title>
</head>
Your footer file as .inc
Then save your navigation XHTML in the following nav.inc. All should work out for you. If you need more help just ask. All of your pages must be renamed to end with .php or this will not work.