Recent Questions
Q: Is there any way of asigning the background color of the submenu (I onlyneed one level of nesting menus) different from the background color of thedhtml rollover?
A:  Create Individual Submenu Style and assign it for the first item in that case:
  var menuBackColor="#d1d1d1";
  var menuStyles = [
 ["menuBackColor=#FFFFFF"],
];
["mбs info","http://www.dimensionmultimedia.com/psoepruebas/?page_id=19","","","","","0","0","","","",],
Q: How to set the icon vertically top when the menu in dhtml text is wrapped?
A:  Unfortunately it is not possible to align icon vertically now.
But you can do it using html code within menu in dhtml items, for example:
  var menuItems = [
 ["<img src='deluxe-menu.files/orangeDot.jpg' style='border: 0 none;'>  Home","testlink.html", "", "", "", "", "", "", "", "", "", ],
 ["<img src='deluxe-menu.files/orangeDot.jpg' style='border: 0 none;'>  Product Info hgdgfjh     aaaaaaaaa aaaaaaa     aaaaaaaaaaaaaaaaaaaaaaaaa     aaaa","", "", "", "", "", "", "", "", "", "", ],
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: The secondary javascript menu style sub menu under Aircraft doesn't line up the same as in Tuner.. 
A: 	Deluxe Menu doesn't work correctly (incorrect submenu position) if youhave complex frame structure.
The problem is in a structure of your frameset.
Mozilla browsers can't determine absolute coordinates for a frame, so submenus drop down with an offset.
You should create, for example, the following frameset structure:
--|------------|--
 | top |
--|------------|--
 | menu |
--|------------|--
 | |
 | submenus |
 | |
Now a second row has 3 columns and all browsers can determine a width of the 1st column in the second row.