Probably the easiest way would be to imbed another table.
Change this:
Code:
<td width="15%" valign="top" height="100%" style="border-style: solid; border-width: 1" bgcolor="#D5D5FF" background="menu_d00dle.jpg">
<p align="center">[img]images/nav_icf_home.gif[/img]</p>
<p align="center"><a href="icf_store/">
[img]images/nav_icf_store.gif[/img]</a></p>
<p align="center"><a href="photo_gallery/">
[img]images/nav_pht_glry.gif[/img]</a></p>
<p align="center"><a href="uses/">
[img]images/nav_uses_ideas.gif[/img]</a></p>
<p align="center"><a href="contact/">
[img]images/nav_contact_us.gif[/img]</a></p>
<p align="center"><a href="aboutus/index.html">
[img]images/nav_about_us.gif[/img]</a></p>
</td>
To this:
Code:
<td>
<table background="menu_d00dle.jpg" style="border-style: solid; border-width: 1">
<tr>
<td>
<p align="center">[img]images/nav_icf_home.gif[/img]</p>
<p align="center"><a href="icf_store/">
[img]images/nav_icf_store.gif[/img]</a></p>
<p align="center"><a href="photo_gallery/">
[img]images/nav_pht_glry.gif[/img]</a></p>
<p align="center"><a href="uses/">
[img]images/nav_uses_ideas.gif[/img]</a></p>
<p align="center"><a href="contact/">
[img]images/nav_contact_us.gif[/img]</a></p>
<p align="center"><a href="aboutus/index.html">
[img]images/nav_about_us.gif[/img]</a></p>
</td>
</tr>
</table>
</td>
I think that should do it. Hope that was what you were looking for.