Hey, I'm pretty sure it's your last row. Your table has 8 columns, I think? The last row only has one column, and since the cell in that row is quite wide, it's pushing out all the other columns.
You're also missing </td>, </tr> and </table> tags for that last row, the BORDERCOLOR attribute of the last table hasn't been closed (you need another "), and the td valign attribute just after it isn't closed either. So those might add to the problem!
Try replacing your last row with this:
Code:
<TR>
<td colspan="8">
<table cellpadding="0" cellspacing="0" WIDTH="480" HEIGHT="151" BORDER="1" BORDERCOLOR="B86A7O">
<tr>
<td valign="center">
<font face="Arial" size="1" color="black">
Hello, and welcome to the Hugs for Hawk Nelson website! Things are STARTING to get somewhat under control...
testing testing testing
</font>
</td>
</tr>
</table>
</td>
</TR>
Edit: I've tested that out, and it helps a bit. The navigation links are still a bit wonky, but adding align="left" to each of those cells might help. If that still doesn't work, try adding an empty cell to the end of that row, with a width of 100%:
Code:
<td width="100%"></td>
All the other spanning rows would need to be adjusted to colspan="9' then, of course