Recent Questions
Q: I ordered & installed the dhtml collapsable menu. 
 I can't seem to get the floating function to work. Here's how I have the variables set in the data-tree.js file:
   var tfloatable = 1;
   var tfloatIterations = 10;
   var tfloatableX = 0;
   var tfloatableY = 1;
 And here are the links to the .js files in my HTML doc <head>:
 <!-- Deluxe Tree -->
 <noscript><a href="http://deluxe-tree.com">JavaScript Tree Menu by Deluxe-Tree.com</a> </noscript>
 <script type="text/javascript">  var tWorkPath="tree-menu/";</script>
 <script type="text/javascript" src="tree-menu/dtree.js"></script>
 <script type="text/javascript" src="tree-menu/dtree_add.js"></script>
 <script type="text/javascript" src="tree-menu/dtree_ajax.js"></script>
 <script type="text/javascript" src="tree-menu/dtree_dyn.js"></script>
 <!-- Copyright (c) 2006, Deluxe Tree, deluxe-tree.com -->
 Please let me know if there are any other settings that need to be changed. I'm hoping to go live with this site wed. so a quck reply is appreciated.
A: Notice, your dhtml collapsable menu won't float with relative position. You shouldset:
  var tabsolute=1;
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 have found (was it like this before??) that if I right-mouse-click over a menuitem then I do not see any option to open the URL in new window....
 I do not get any options at all to open the URL in new window (or same window), in the browser context menu (both IE and Firefox).
 
A: No, Deluxe Menu doesn't have such a feature. This is only text, not alink. And we won't change it. Because now you're able to paste anyhtml code within menu item.
   var menuItems = [
 ["<div>Arbeidsplaner</div>","cp_workplan.php",,,,"_self","0","0"],
You can write your links in the following way:
 ["Channels","", , , , , , , , ],
 ["|<a class='menu' href='http://google.com/'>google</a>","", , , , "_self", , , , ],
 ["|<a class='menu' href='http://google.com'>Market</a>","", , , , "_", , , , ],
And create a style:
A.menu {
color: #000;
text-decoration: none;}
A.menu:hover {
color: #000;
text-decoration: underline;} 
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>