Recent Questions
Q: How do I control the individual tab width for afloat tabs?
A:   var bmenuWidth="100%";
I have 5 items in my example, so I've created Individual Style
  var bstyles = [
 ["bitemWidth=20%"],
];
And assign it for all items:
 ["Item 1 text text","", "", "", "", "", "0", "", "", ],
 ["Item 2 text text","", "", "", "", "", "0", "", "", ],
 ["Item 3 text text","", "", "", "", "", "0", "", "", ],
 ["Item 4 text text","", "", "", "", "", "0", "", "", ],
 ["Item 5 text text","", "", "", "", "", "0", "", "", ],
But notice that items width cannot be smaller than the width of its'text. 
So it is possible that you'll have different size of some itemsif your window have a small size.
Q: Thank you for your quick service. Question for you, in the templates java expanding menu - Standard Tree Menu. There is an option to search by Index and also word query. When I bring the Template up I dont see this option on the sample menu. I'm I missing something or do I need to add it. If I need to add it can you explain to me how to do it. 
A:  You are able to paste any html code within java expanding menu items.
For example:
  var tmenuItems = [
...
 ["<nobr><FORM method=GET action='http://www.google.com/custom'><input name='as_q' value='search
the web' size=15 style='font-size:10'> <INPUT type=hidden name=cof
 value='LW:144;L:http://domain.edu/images/sulogo.gif;LH:45;AH:center;GL:0;S: http://domain.edu;AWFID:e01cb67b8afe383e;'></form></nobr>","", "images/icons/search.gif", "", "", "", "", "", "", "", "",],
 You should write your own code within tmenuItem.
Q: Is it possible to make the menuitems rightclickable in the latest version of javascript dhtml menu. I want to rightclick on the dropdown item and choose open in new window. 
A: 		No, there is no such a feature in Deluxe Menu v3.2.7.
You can write your item in the following way:
  ["|<a href='http://www.domain.com'>test test test</a>",""],
But you should assign style for this link.
A.link {
...
}
A.link:hover {
...
}
Q: Using the example menu you have, how do i make the sub-menu for the 'Sample' menu item a multi-column and leave the 'Product Info' menu item as is.
 I only want certain sub-menus to have multi-columns. I don't want all menu items to have a multi-column sub.
 
A: Please, see the attached example. 
You should use individual styles.
  var menuStyles = [ 
    ["smColumns=2"], 
    ["smColumns=1"], //style 1 
]; 
... 
   ["More Samples","testlink.htm"], 
      ["|Group 1","", , , , , "3", "1", , ], //assign style 1 
Try that.