Recent Questions
Q: I do not understand how may I include content in each tab in the , may you send to me examples or more information?
A: See in Deluxe Tabs there are two modes:
1.   var tabMode=0;
You can create only one level of tabs and assign Object Id's of the
DIV's to show when you click on the tab.
 ["XP Tab 1","content1", "", "", "", "", "", "", "", ],
 ["XP Tab 2","content2", "", "", "", "", "", "", "", ],
 ["XP Tab 3","content3", "", "", "", "", "", "", "", ],
 ["XP Tab 4","content4", "", "", "", "", "", "", "", ],
You should paste your content in the <div> .. </div> tags.
 <div id="content1" style=" visibility: hidden;" class="tabPage"> 
 <p align=center><img src="img/logo_DM.gif" width=262 height=56 alt="Deluxe-Menu.com"></p>
 </div>
 <div id="content2" style="visibility: hidden;" class="tabPage"> 
 <p align=center><img src="img/logo_DT.gif" width=262 height=56 alt="Deluxe-Tree.com"></p>
 </div>
 <div id="content3" style=" visibility: hidden;" class="tabPage"> 
 <p align=center><img src="img/logo_DTabs.gif" width=254 height=58 alt="Deluxe-Tabs.com"></p>
 </div>
 2.   var tabMode=1;
You can assign only links in this mode.
You should create top level items with subitems.
 ["XP Tab 1","", "", "", "", "", "", "", "", ],
  ["|Link 1_1","http://deluxe-tabs.com", "", "", "", "", "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", "", "", ],
 ["XP Tab 2","", "", "", "", "", "", "", "", ],
  ["|Link 2_1","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 2_2","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 2_3","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 2_4","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 2_5","testlink.htm", "", "", "", "", "0", "", "", ],
 ["XP Tab 3","", "", "", "", "", "", "", "", ],  ["|Link 3_1","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 3_2","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 3_3","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 3_4","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 3_5","testlink.htm", "", "", "", "", "0", "", "", ],
You can use Object ID as well as Link in both modes. Use the following prefixes within item's link field:
"object:" - means that there is object id after it; 
 "link:" - means that there is a link after it.
"javascript:" - means that there is a javascript code after it, for 
example:javascript:alert(\'Hello!\')
So, you should write for example:
  ["|Link 1_1","object:Content1_1", "", "", "", "", "0", "", "", ],
Q: I'm having a major problem centering html menu navigation in a table.
No matter what I try, the menu stays on the left ofthe table.
 Do you have any suggestions? 
 
A: To center the menu on your html page you should set the following
parameter and install the menu in the following way:
  var absolutePos=0;
<div align=center>
<script type="text/javascript" src="deluxe-menu/dmenu.js"></script>
</div>
<table width=800>
<tr>
<td align=center width=600><script type="text/javascript" src="data/data.js"></script></td>
</tr>
</table>
Q: Hi. I have the following problem with deluxe-menu: 
Created flash drop menu doesn’t show up in IE7, but works properly in Firefox. Tried to play with IE7 security settings – doesn’t help. You can see it at freebusinesslist.com.au if youlike.
 
A: Try to set width in "px" for the menu. 
  var menuWidth="450px";
Q: I have one problem you may be able to help with: 
If I set 
   var tsaveState = 1; 
The following errors are generated: 
 _tls is not defined 
 tob has no properties 
and the menu doesn't display. 
 If you could help with this I would be grateful.
 
A: You should use dtree_ss.js file. 
You should install your menu so: 
<noscript><a href="http://deluxe-tree.com">Javascript Tree Menu by Deluxe-Tree.com</a></noscript> 
<script type="text/javascript" src="menudir/dtree.js"></script> 
<script type="text/javascript" src="menudir/dtree_ss.js"></script> 
<script type="text/javascript" src="menudir/tree-data.js"></script>