Recent Questions
Q: I bought the Deluxe Menu system for one website. Javascript select menu works well on all versions of IE that I tried (5,6,7)
 However, the background and shadow do not render in Firefox. As a result the menu is not as attractive.
 Can you help with this or am I stuck?
A:  You should add Individual Item style and assign it for the top javascript select menu items:
  var itemStyles = [
 ["itemHeight=20px"],
];
 ["Home","index.shtml", "", "", "First Page", "", "0", "", "", "", "", ],
 ["Communication","", "", "", "", "", "0", "-1", "", "", "", ],
 ...
 Filters and transitional effects are features of Internet Explorer5.5+ only.
See more info here:
http://www.deluxe-menu.com/filters-and-effects-sample.html
Q: I am having great problems making my tab working, I seems to select the second tab by default. 
 I have looked in your frequent asked questions and tried the below suggestion, I have not used the registered domain as I am in the process of design.
   var bselectedItem = 3; 
 Where 3 is the number of your menu item from the   var bmenuItems parameter. 
   var bmenuItems = 
 [ 
 ["Mac Tab 1", "content1"], 
 ["Mac Tab 2", "content2"], 
 ["Mac Tab 3", "content3"], 
 ["Mac Tab 4", "content4"], // selected tab 
 ]; 
 The ID of the item starts with 0. 
 Try that. 
 But without success? 
 Any idea?
 Please advice 
A: See, the ID of the item starts with 0. 
So, if you use TabMode (  var tabMode=1;): 
  var bselectedItem = 10; 
["-", ] - separator, ID = 0 
["Mac Tab 1", "content1"], ID = 1 
 ["Subitem1","testlink.html",] ID = 2 
 ["Subitem2","testlink.html",] ID = 3 
["Mac Tab 2", "content2"], ID = 4 
 ["Subitem1","testlink.html",] ID = 5 
 ["Subitem2","testlink.html",] ID = 6 
["Mac Tab 3", "content3"], ID = 7 
 ["Subitem1","testlink.html",] ID = 8 
 ["Subitem2","testlink.html",] ID = 9 
["Mac Tab 4", "content4"], // selected tab ID = 10 
 ["Subitem1","testlink.html",] ID = 11 
 ["Subitem2","testlink.html",] ID = 12 
 
If you use tabs (  var tabMode=0;):
  var bselectedItem = 2; 
["-", ] - separator, ID = 0 
["Mac Tab 1", "content1"], ID = 1 
["Mac Tab 2", "content2"], ID = 2 // selected tab 
["Mac Tab 3", "content3"], ID = 3 
["Mac Tab 4", "content4"], ID = 4
Q: I would like insert a menu in a asp webpage, but in this case the accents in the labels are not displayed. 
 Any idea about that? 
A:  You can insert any html code within menuItems, for example: 
  var menuItems = [ 
 ["É","testlink.html", "", "", "", "", "", "", "", ],
Q: I can't figure out how to change the names of each tab for the simple dhtml tabs!
A: You can set the name of each tab in the Deluxe Tuner.
Double click on the item name in the Items area.
Or set the name of the tab using   var bmenuItems:
  var bmenuItems = [
 ["Name of Tab1","content1", "", "", "", "", "1", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Name of Tab2","content2", "", "", "", "", "", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Name of Tab2","content3", "", "", "", "", "", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Contact us","content4", "", "", "", "", "2", "", "", ],
];