Please read that thread again- essentially, there should still just be one tabs container with a single ID attribute, but in this case, instead of that container being the UL element, change it to a DIV element that encompasses two UL elements. So instead of this for example:
Code:
<ul id="countrytabs" class="shadetabs" style="margin-left: 7px">
<li><a href="#" rel="country1">Peer Reviews</a></li>
<li><a href="#" rel="country2">Project Recovery</a></li>
<li><a href="#" rel="country3">Selecting Tools & Techniques</a></li>
<li><a href="#" rel="country4">Quick Starts</a></li>
<li><a href="#" rel="country5">Project Organization</a></li>
</ul>
<ul id="countrytabs" class="shadetabs">
<li><a href="#" rel="country1" class="selected">Profiling</a></li>
<li><a href="#" rel="country2">Capital Projects</a></li>
<li><a href="#" rel="country3">Earned Value Management</a></li>
<li><a href="#" rel="country4">Risk Management</a></li>
<li><a href="#" rel="country5">Methodology Developement</a></li>
</ul>
You should have:
Code:
<div id="countrytabs">
<ul class="shadetabs" style="margin-left: 7px">
<li><a href="#" rel="country1">Peer Reviews</a></li>
<li><a href="#" rel="country2">Project Recovery</a></li>
<li><a href="#" rel="country3">Selecting Tools & Techniques</a></li>
<li><a href="#" rel="country4">Quick Starts</a></li>
<li><a href="#" rel="country5">Project Organization</a></li>
</ul>
<ul class="shadetabs">
<li><a href="#" rel="country1" class="selected">Profiling</a></li>
<li><a href="#" rel="country2">Capital Projects</a></li>
<li><a href="#" rel="country3">Earned Value Management</a></li>
<li><a href="#" rel="country4">Risk Management</a></li>
<li><a href="#" rel="country5">Methodology Developement</a></li>
</ul>
</div>
Bookmarks