Recent Questions
Q: I have 2 questions about this script I would like to find out before purchasing:
 1. Does it support 3rd and 4th level java script navigation menu?
 2. How customizable is it style-wise, meaning, I have images I want used for the top level navigation, and background images for the rest. Any way I can achieve this?
A:  1) Yes, you can add as many levels in the java script navigation menu as you want.
2) Actually you can create any java script navigation menu with Deluxe Menu. You can use Individual Styles tocreate your menu. For example:
  var itemStyles = [
 ["itemWidth=92px","itemHeight=21px","itemBorderWidth=0","fontStyle=normal 11px Tahoma", "fontColor=#FFFFFF,#FFFFFF","itemBackImage=data-vista-03.files/btn_magentablack.gif,data-vista-03.files/btn_magenta.gif"],
];
  var menuStyles = [
 ["menuBackColor=transparent","menuBackImage=back.gif","menuBorderWidth=0", "itemSpacing=1","itemPadding=0px 5px 0px 5px"],
];
Please, try the trial version and check menu parameters. Use DeluxeTuner to create your menu.
Q: Is there a javascript function that I can call that will return the ID or the Text value of the currently active tab of the web navigation?
A: Unfortunately there is no such a function now.
There are such variables.
dtabs_tabs[menuN].b1 - dtabs_tabs[menuN].selectedItem
dtabs_tabs[menuN].JT0 - dtabs_tabs[menuN].selectedSmItem
But they contain the index of the selected menu item, not the ID.
Q: I want to use the java mac tabs, but my sub menu has no image like on the table sample on your site.
A:  You should assign Individual Style for all subitems: 
  var bmenuItems = [ 
 ["XP Tab 1","", "", "", "", "", "", "", "", ], 
  ["|Link 1_1","testlink.htm", "", "", "", "", "0", "", "", ], 
  ["|Link 1_2","testlink.htm", "", "", "", "", "0", "", "", ], 
  ["|Link 1_3","testlink.htm", "", "", "", "", "0", "", "", ], 
  ["|Link 1_4","testlink.htm", "", "", "", "", "0", "", "", ], 
  ["|Link 1_5","testlink.htm", "", "", "", "", "0", "", "", ], 
Q: I would like to create navigation menu where the background is transparent until you move the mouse over itwhen it turns to a color. I erased the first color number from the list and that worked, but when I scrolled the mouse over the links, the background stayed light blue even though the mouse was no longer over them. Is there a way to let the background start transparent, turn light blue when the mouse is over it, then go back to transparent after the mouse is off it? 
A: You can use transparent parameter, for example:
  var itemBackColor=["transparent","#4792E6"];