My suggestion for your next step (assuming you don't want to completely rewrite): Change the menus into real text, not images.
Keep in mind that "removing tables" isn't enough. It means going from this:
HTML Code:
<table width="581" height="217" border="12" align="center">
<tr>
<th width="343" scope="col"><p class="style22"><span class="style26">Kiwi Fishing's <br>
</span><span class="style48">"SENIOR TEAM "<br>
</span><span class="style19">return to Bangkok for a second season of Fishing </span></p>
<p class="style32"><span class="style1">Liz and Bruce have returned to complete the team, here is their report of </span>Fishing Bung Sam Ran and Fisherman's Paradise Nichada Thani </p></th>
<th width="250" scope="col"><h2 align="center"><a href="Kiwi Fishing Bangkok catch report0015.html"><img src="PHOTOS/bung sam ran/Solar Powered Big Game Fishing Thailand.jpg" alt="Bangkok in Style at Nichada Thani" width="250" height="188" border="0"><br>
<br>
</a><a href="Kiwi Fishing Bangkokstories8.html" class="style21">Fishing Thailand in style at the Exclusive<br>
Fisherman's Paradise<br>
click here </a></h2></th>
</tr>
</table>
to become
HTML Code:
<h2><a href="">Kiwi Fishing's <span class="name">Senior Team</span> Returns to Bangkok for a Second Season of Flishing</a></h2>
<p>
Liz and Bruce have returned to complete the team, here is their report of <span class="name">Fishing Bung Sam Ran and Fisherman's Paradise Nichada Thani</span>.
</p>
<img src="PHOTOS/bung sam ran/Solar Powered Big Game Fishing Thailand.jpg" alt="Bangkok in Style at Nichada Thani" width="250" height="188">
and throw in some CSS.