On your 2nd page, your main tabs' HTML should not be a table:
Code:
<table id="maintab" class="shadetabs" border="0" cellpadding="0" cellspacing="0" width="100%">
<!--msthemelist--><tr><td valign="baseline" width="42"><img src="_themes/suit1/bullet1.gif" width="15" height="11" hspace="13" alt="bullet"></td><td valign="top" width="100%"><!--mstheme--><font face="Arial"><a href="#" rel="tcontent1">Read</a><!--mstheme--></font><!--msthemelist--></td></tr>
<!--msthemelist--><tr><td valign="baseline" width="42"><img src="_themes/suit1/bullet1.gif" width="15" height="11" hspace="13" alt="bullet"></td><td valign="top" width="100%"><!--mstheme--><font face="Arial"><a href="#" rel="tcontent2">Viewed</a><!--mstheme--></font><!--msthemelist--></td></tr>
<!--msthemelist--></table><!--mstheme--><font face="Arial">
Recall from the demo that it should be a list:
Code:
<ul id="maintab" class="shadetabs">
<li class="selected"><a href="#default" rel="ajaxcontentarea">Intro</a></li>
<li><a href="external.htm" rel="ajaxcontentarea">Bird</a></li>
<li><a href="external2.htm" rel="ajaxcontentarea">Dog</a></li>
<li><a href="external3.htm" rel="ajaxcontentarea">Cat</a></li>
<li><a href="external4.htm" rel="ajaxcontentarea" rev="content.css, content.js">Sea Otter</a></li>
</ul>
You're free to include this list within a table, but that's different than making the table itself the Tab Menu interface, as you are trying to do it seems. Remember to remove the "id=maintab" declaration inside your TABLE tag.
Bookmarks