Recent Questions
Q: A lot of things have come in between... Just a few more Q's before I order.
 1)
 At the bottom of the page you refer to below, there is a table showing the tmenuItems array, itemInd and " submenuInd ". But in the examples on the same page, the function "dtreet_ext_getItemIDByIndex" takes the arguments (menuInd, itemInd). Is the argument "menuInd" the same as "submenuInd" referred to in the javascript menu design??
 2)
 When I highlight an item on "onload" I need to expand that item's parent(s), right? What will happen to other, already expanded nodes when I do that? Will they still be expanded or collapsed? 
A: 	1) menuInd is the index of a tree menu on a page, >= 0.
First menu - menuInd=0
Second menu - menuInd=1
Third menu - menuInd=2
Fourth menu - menuInd=3
...
2) Yes, the already expanded nodes will be expanded.
Q: Ok, please disregard my previous email, it was IE 8! I went back to IE 7 and everything is fine.
 I do however got requests to speed up the javascript treeview action (of my 2 out of 2 customers thus far on your menus).
 Is there a setting to make it go faster? 
A:    var tXPIterations=5;
You can also try to use AJAX feature. It will increase the loading speed.
Q: About to purchase my third license, but I have a problem.  I just loaded the menu tuner 3 on to my pc and updated my menu.  Now, my second “drop down” column of the menu goes up instead of down like the rest.  Can you tell me how to correct this?
 
A: Try to set the following parameter:
  var subMenuVAlign="bottom";
Q: Is it possible to have your menu mouseover call one of my functions? 
I need to change some text on the screen based on which menu itemis highlighted.
A: Each menu items can include any html code. 
So, you can include your own objects with onmouseover event, forexample: 
  var menuItems = [ 
 ["<div onmouseover='yourFunc()'>item text</div>"] 
]; 
Where yourFunc() is Javascript function.