Recent Questions
Q: The AJAX sample for tree menu script on website does not have any styling applied at the moment.
 I am assuming that it would support full styling with AJAX as well. 
Is this correct?
A: You can use any style and templates for the AJAX sample.
Create a menu and set style you need using Individual Item Styles.
To enable AJAX Tree Menu use the following menu parameters:
   var tajax=1;
Then set your menu in such way:
  var tmenuItems = [
 ["Deluxe Tree: XP Style","", "", "", "", "XP Title Tip", "", "0", "", "data-samples/data-ajax5.js", ],
 ["+Samples Gallery","", "", "", "", "XP Title Tip", "", "0", "0", "", ],
  ["|Samples Block 1","", "", "", "", "", "", "", "", "data-samples/data-ajax.js", ],
  ["|Samples Block 2","", "", "", "", "", "", "", "", "data-samples/data-ajax.js", ],
  ["|Samples Block 3","", "", "", "", "", "", "", "", "data-samples/data-ajax.js", ],
];
Each .js file must contain menuItems variable for the submenu in the following format:
   var tmenuItems = [
 [text, link, icon1, icon2, icon2, tip, target, itemStyle, submenuStyle, jsFileName],
 ];
Where jsFileName - .js filename on the server that contains tmenuItems variable for the submenu.
For example:
  var tmenuItems = [
 ["Home","testlink.htm", "", "", "", "Home Page Tip", "", "", "", "", ],
 ["Product Info","", "", "", "", "Product Info Tip", "", "", "", "data-samples/data-ajax2.js", ],
 ["Samples","", "", "", "", "Samples Tip", "", "", "", "data-samples/data-ajax4.js", ],
 ["Purchase","testlink.htm", "", "", "", "Purchase Tip", "", "", "", "", ],
 ["Support","", "", "", "", "Support Tip", "", "", "", "", ],
  ["|Write Us","mailto:[email protected]", "", "", "", "", "", "", "", "", ],
];
 Q: I want to use single css drop down menu bar for each page without applying HTML Code for each page separatly.I mean to use CSS Menu as per our .JS Menu.
A:  Unfortunately it is not possible with css menu.
On each page you should call css file with styles:
<link href="menu.css" rel="stylesheet" type="text/css" />
and add code for the menu on each page in the place where you want to have a menu, forexample:
<ul class="cssMenu cssMenum">
 <li class=" cssMenui"><a class=" cssMenui" href="testlink.html">Home</a></li>
 <li class=" cssMenui"><a class=" cssMenui" href="#"><span><img class="def" src="default.files/icon1.gif"/>
<img class="over" src="default.files/icon1o.gif">Product Info</span>
<![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
 <ul class=" cssMenum">
 <li class=" cssMenui"><a class=" cssMenui" href="testlink.html"><img class="def" src="default.files/icon2.gif"/>
<img class="over" src="default.files/icon2o.gif">Features</a></li>
 </ul>
 <!--[if lte IE 6]></td></tr></table></a><![endif]-->lt;/li>
 <li class=" cssMenui"><a class=" cssMenui" href="testlink.htm">
<img class="def" src="default.files/icon1.gif"/>
<img class="over" src="default.files/icon1o.gif">Contact Us</a></li>
</ul>
You can also try to use frames.
 Also you can use aserver-side script (php, asp, vb, etc.) to generate html pages fromtemplates on your server.
Q: Is it possible to make on top of the javascript expandable tree 2 extra buttons:
 * Expand all
 * Collapse all
 Which command do I use??? 
A:  Tree Menu doesn't have such a feature now.
You can write your own function based on the following API functions:
function dtreet_ext_showItem (itemID, visibility)
function dtreet_ext_expandItem (itemID, expand)Q: It is mostly working now except where I have two rows of nav tabs.. The top row opens new pages and the bottom row is just regular div tabs... works fine in IE and Firefox but not Chrome... any ideas? 
A: 	Try to open links in the following way:
   var bmenuItems = [
 ["Overview","link:Sun_Cabo_Services.asp", "", "", "", "", "0", "", "", ],
 ["-"],
 ["Villa Services","link:Cabo_Villa_Services.asp", "", "", "", "", "0", "", "", ],
 ["-"],
 ["Chef/Cook Services","link:Cabo_Chef_Services.asp", "", "", "", "", "0", "", "", ],
 ["-"],
 ["Spa Services","link:Cabo_Spa_Services.asp", "", "", "", "", "0", "", "", ],
 ];