Recent Questions
Q: Well I figured all of that out but now I have a new problem.The content of the textarea tabs is not displaying in IE. 
A: 	See, it is not correctly to use submenus in tabMode=0.
Now you have:
  var bmenuItems = [
 ["Why Choose Frictionsweb?","content1", "", "", "", "Why choose Frictionsweb Premium Internet Services?", "", "", "", ],
  ["|Our Services","content2", "", "", "", "We handle your project from the ground up!", "", "", "", ],
];
  var bmenuItems = [
 ["Specials","content3", "", "", "", "Great Deals from Frictionsweb!", "", "", "", ],
  ["|Our Services","content4", "", "", "", "We handle your project from the ground up!", "", "", "", ],
 ["-","", "", "", "", "", "", "", "", ],
];
Try to write your bmenuItems in the following way:
  var bmenuItems = [
 ["Why Choose Frictionsweb?","content1", "", "", "", "Why choose Frictionsweb Premium Internet Services?", "", "", "", ],
 ["Our Services","content2", "", "", "", "We handle your project from the ground up!", "", "", "", ],
];
  var bmenuItems = [
 ["Specials","content3", "", "", "", "Great Deals from Frictionsweb!", "", "", "", ],
 ["Our Services","content4", "", "", "", "We handle your project from the ground up!", "", "", "", ],
 ["-","", "", "", "", "", "", "", "", ],
];
Q: How do I set the width of sub menu items to be the same width as the parent horizontal dhtml menu item? I can see how to set a px or % width, and when the at least one sub menu item exceeds the parent item the the entire menu stretches to that width (which is fine), but what about the instance where the sub menu items are not as wide as the parent item - in this case, the sub menu is not as wide as the parent item, which looks odd. Is there any way to force it to be (at least) the same width as the parent item? 
 I hope this is all clear to you, if not, please give me a shout for clarification. 
A: 	 You can set exact width for your top items using Individual Item Styles and set submenu width usingIndividual Submenu Style.
You should also set the following parameter:
  var noWrap=0;
Q: I am evaluating your fine menu builder application. 
 Please let me know the following: 
 a) How could I call a script instead of specifying a link? 
  ["|Product A","http://dhtml-menu.com","","","",,"0",], 
 b) If the above is possible, please let me know how, in the called script, I could know where the call to the script come from.
 
A:  You can use your own javascript functions in the menu items. 
You should paste "javascript:some_function()" into item's link field, for example: 
  var menuItems = [ 
["text", "javascript:your_function(...)", ...] 
];
Q: Is it possible to put an enter in a drop down menu item? 
 Like can I split Login newspaper to login (enter) newspaper 
 "Login 
 newspaper"
A:  You can use any html code within menuItems. 
Use 
 tag to wrap your text.
["login <br> newspaper","","","","","","",""]