Recent Questions
Q: Can we right justify the secondary nav? 
 If so, can you send instructions on how. Thanks. 
A: You should set the following parameters: 
  var titemAlign = "right"; 
  var ticonAlign = "right"; 
Q: I need to know if separate coloring of main items is possible in slide drop down menu. 
A: You can create Individual Item styles and assign it for the top items,for example:
  var itemStyles = [
 ["itemBackColor=#8080FF,#FFFF80","itemBorderStyle=solid,solid","itemBorderColor=#000080,#FF8000"],//style0
 ["itemBackColor=##FFFFF,#000000","itemBorderStyle=solid,solid","itemBorderColor=##AA0000,#0000EE"],//style1
 ];
  var menuItems = [
 ["Item 1","", "", "", "", "", "0", "", "", "", "", ], //style0
 ["Item 2","", "", "", "", "", "1", "", "", "", "", ], //style1
  ["|Item 3","", "", "", "", "", "", "", "", "", "", ],
  ["|Item 4","", "", "", "", "", "", "", "", "", "", ],
 ["Item 5","", "", "", "", "", "0", "", "", "", "", ], //style0
  ["|Item 7","", "", "", "", "", "", "", "", "", "", ],
  ["|Item 8","", "", "", "", "", "", "", "", "", "", ],
 ["Item 6","", "", "", "", "", "1", "", "", "", "", ], //style1
];
You can find more info about individual item styles here:
http://deluxe-menu.com/individual-item-styles-info.htmlQ: How can I open the link in a new window with your DHTML MENU?
A: Please, try to set that parameter in your data.js file: 
  var itemTarget="_blank";
Q: I'm about to create a transparent menu as you can see on the attached photo. I can't find any samples on how to place the cascading navigation bar on an image with 100% opacity. Is it possible...?
A:  To create a transparent menu you should set transparent value for the following parameters:
  var menuBackColor="transparent";
  var itemBackColor=["transparent","transparent"];