The auto select feature built into the script is very rundamentary, and will only work if the current page's URL matches exactly one of the URLs specified in the main tabs of the script.
Using server side to do this just means having your dynamic pages return a JavaScript integer variable that corresponds to the tab you wish to have selected for it. In other words, the red portion of the Drop Down Tabs needs to be dynamic when you call it on your page:
Code:
tabdropdown.init("bluemenu", 0)
For example, if your pages are PHP based, the source of your page may look like:
Code:
tabdropdown.init("bluemenu", <?echo $currentpageindex;?>)
Bookmarks