This add more tabs uptop, basicly, just adds more links.
Add this to your Headers if you don't have it already. If you already have it, don't add it:
<script src="/jquery.js"></script>
Now, I found out that you can add my codes to the Headers or Footers, it doesn't matter, they will still work, so you can add this in either your headers or footers...
<script>
function addlinks(){
//Created by Agent Moose (smcodes.smfforfree3.com)
$(function() {
var links = new Array()
links[links.length] = ["LINKS NAME","URL FOR LINK"]
for(m=0;m<links.length;m++){
$(".maintab_last").before("<td valign='top' class='maintab_back'><a href='"+links[m][1]+"'>"+links[m][0]+"</a></td>");
};});}
addlinks();
</script>
LINKS NAME is where you put the links name
URL FOR LINK, you get the URL of the link and place it there.
If you want to add more links, just add more of these lines:
Will open the url in the same window:
links[links.length] = ["LINKS NAME","URL FOR LINK"]
Will open the url in a new window/tab:
links[links.length] = ["LINKS NAME","URL FOR LINK' target='_blank"]