Recent Questions
Q: So, I am still interested if there is a dynamic way to rebuild (and restructure) a menu w javascript, just for interest. 
A:  No, unfortunately it is not possible to rebuild the menu withoutreloading of the page now. We'll add this feature in the next versionof the menu.
Q: Suppose if I get the single user license, then I see I wont be able to see the javascript code. If I have to handle events like clicking a tab or hover over a tab, how do I do it for the tab menu javascript? 
A: Actually there is no need to change our source code to handle these events.
Actually you can use your own Javascript code instead standard links and html code inside item text. For example:
   var bmenuItems = [
 ["text", "javascript:your_code_here"]
 ]; 
 or
   var bmenuitems = [
 ["<div onClick='urlSubstitution(\'transco/sheet.asp?stype=1\')'>Table of Contents</div>", ""]
 ];
Q: I have configured the Deluxe Tabs menu for the purpose that this menu will form the basis of a website's navigation, once clicked a tab it will take you to the appropriate page.
 However one problem I have faced is that menu, regardless of current webpage will display the same active/ selected menu item, having looked in the menu parameters I know that the following set the positions of the selected tab :
 *   var bselectedItem=0;
 *   var bselectedSmItem=0;
 Is there anyway of selecting the dhtml tab menu index location according to what webpage you are on? On your website it shows an example of a PHP server-side script, however is there an example of this in ASP ? 
A: 	No, unfortunately we don't have such examples in ASP.
Deluxe Tabs doesn't support API functions which can return theselected tab also.
You can set "bselectedItem" and "  var bselectedSmItem" parametersbased on your link before you call your data file.
For example, move "  var bselectedItem" and "  var bselectedSmItem" parametersfrom your data file to your code.
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
   var bselectedItem=<?php echo $seltabs; ?>;
   var bselectedSmItem=<?php echo $selsmtabs; ?>;
 </script>
 <SCRIPT src="data.js" type=text/javascript></SCRIPT>
 </TD>
You should define seltabs and selsmtabs using server side script.
You can also set it on every page before you call data.js file, forexample:
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
   var bselectedItem=4;
   var bselectedSmItem=3;
 </script>
 <SCRIPT src="data.js" type=text/javascript></SCRIPT>
 </TD>
Q: When my page loads up, there is a flash for about a second of all the text that is used in the java menus. This looks really bad to visitors like I am using hidden text on the page. Is there a way to prevent this flash of text?
A:  I suppose that you see search engine friendly code.
 <!-- Code for Deluxe Menu Items. Generated by Deluxe Tuner -->
 <div id="dmlinks" style="font:undefined;color:#000000;text-decoration:none">
 <a id="dmI0" href="testlink.html">Home</a>
 <a id="dmI2" href="testlink.html">Features</a>
...
 </div>
 <!-- End of Code for Deluxe Menu Items -->
You won't see this text in most cases. We use it on our websites too.
But you can delete this code if you want.