don't be too hard on yourself.
this
HTML Code:
<ul id="countrytabs" class="shadetabs">
is where you need to choose a new id. After that, add a second instance of the ddtabcontent script (assuming you used "newtabs" as your new id):
Code:
var newtabs=new ddtabcontent("newtabs");
newtabs.setpersist(true);
newtabs.setselectedClassTarget("link");
newtabs.init();
You would also need to change the ids (and matching rel attributes) on each tab link/ tab content:
HTML Code:
<li><a href="#" rel="newtabs1">Post-Gazette</a></li>
<!-- matches -->
<div id="newtabs1" class="tabcontent">...your content goes here...</div>
<!-- and so forth. -->
just be patient with it, once you understand what needs to be done, it's pretty easy.
Once you change and double-check everything, if it's still not working, post your code* (or a link to your page) and we'll look at it again.
*Please use the forum's bbcode tags and indent your code to make it more readable:
for php code............[php] <?php /* code goes here */ ?> [/php]
for html...............[html] <!-- markup goes here -->.....[/html]
for js/css/other.......[code] code goes here................[/code]
Results in:
PHP Code:
<?php /* code goes here */ ?>
HTML Code:
<!-- markup goes here -->
Bookmarks