If your pages are regular .htm (and not .shtml for example), then your options are very limited unfortunately. The Tab menu includes HTML markup that can't be easily put inside a .js file and included that way, ie:
Code:
<div id="bluemenu" class="bluetabs">
<ul>
<li><a href="http://www.dynamicdrive.com">Home</a></li>
<li><a href="http://www.dynamicdrive.com/style/" rel="dropmenu1">CSS</a></li>
<li><a href="http://www.dynamicdrive.com/resources/" rel="dropmenu2">Partners</a></li>
<li><a href="http://tools.dynamicdrive.com">Tools</a></li>
</ul>
</div>
You might try the Ajax Includes script to include the menu that way, but it has many draw backs over a server side solution, from the menu not being search engine indexable to a slight delay each time before the menu is added to the page.
Bookmarks