Hi, I did not go over your whole code, but can give you some general pointers:
1. The links in the submenu all go to the homepage, because that is the way they are currently linked:
For example, this:
<table class="seen2" style="font-size:small; right:100px">
<tr><td class="tpx2" valign="middle" onclick="window.location.href='http://home.naturalfrugality.com/home.php'">Decorating</a></td></tr>
Should be something like this:
<table class="seen2" style="font-size:small; right:100px">
<tr><td class="tpx2" valign="middle" onclick="window.location.href='http://home.naturalfrugality.com/decorating.php'">Decorating</a></td></tr>
But there may be some other mistakes as well, I see in above code you end of without opening anywhere, and so on.
You should look carefully over your code, as well as the linked stylesheet, to rectify the problems.