Sounds like the tables are wrong, you may need to add, or group certain tables to get the right frameset.
This is complicated to explain, but In your page borders, instead of using images, use bgimages instead.
Eg, on your site page to the left of your "featured products" row, (may be line 77 or close to in Dreamweaver) you have the source code;
Code:
<TD ROWSPAN=7><IMG SRC="index_11.jpg" WIDTH=8 HEIGHT=400 ALT=""></td>
changing this to :
[code]
<TD ROWSPAN=7 background="index_11.jpg"></TD>
[code]
will allow the table to default, which may fix your problem.
If it did not fix it, then you would then set the rows properties to
Code:
align="left" valign="top"
making that previous line
Code:
<TD ROWSPAN=7 align="left" valign="top" background="index_11.jpg"></TD>
Now you need to do this to line 88 on your page in Dreamweaver (or close to that line)
This is the image to the right of your row "featured projects"
Code:
<TD COLSPAN=2 ROWSPAN=7> <IMG SRC="index_13.jpg" WIDTH=42 HEIGHT=400 ALT=""></TD>
changes to:
[code]<TD ROWSPAN=7 align="left" valign="top" background="index_13.jpg"></TD
Complicated sounding, but it is really easy once you start playing with it in Dreamweaver. Esentially, all your side images should be backgrounds, and your table should be aligned top and left instead of default.