Recent Questions
Q: At the first time arrow images are loaded successfully in the menu, That time I click the menu and open a new page in crossframe.
 After that I try to open new page from Main Menu, the arrow images are not displayed in the Sub-menus. 
A:  Thanks for your interest in our products. 
You can use additional parameters to make menu paths absolute: 
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://domain.com/pages/"; 
These parameters allow to make images and links paths absolute.
For example: 
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://domain.com/pages/"; 
  var menuItems = [ 
 ["text", "index.html", "icon1.gif", "icon2.gif"], 
]; 
So, link path will be look so: 
http://domain.com/pages/index.html 
Images paths will be look so: 
http://domain.com/images/icon1.gif 
http://domain.com/images/icon2.gif 
Please, try to use these parameters.
Q: I need to know how to have the background in the main items of the dynamic menu transparent, and then the sub-menus a different translucent color. 
A:  To set transparent background for the menu you should set:
  var menuBackColor="transparent";
  var itemBackColor=["transparent","transparent"];
and use Individual Item Styles for your submenus:
  var itemStyles = [
 ["itemBackColor=#8EE8E1,#26BBB0"], //style0
 ["itemBackColor=#F4B7FB,#E65AF5"], //style1
];
  var menuItems = [
 ["Home","testlink.html", "", "", "", "", "", "", "", ],
 ["Product Info","", "default.files/icon1.gif", "default.files/icon1o.gif", "", "", "", "", "", ],
  ["|Features","testlink.html", "default.files/icon2.gif", "default.files/icon2o.gif", "", "", "0", "", "", ], //style0
  ["|Installation","", "default.files/icon2.gif", "default.files/icon2o.gif", "", "", "1", "", "", ], //style1
    ["||Description of Files","testlink.html", "default.files/icon6.gif", "default.files/icon6o.gif", "", "", "", "", "", ],
    ["||How To Setup","testlink.html", "default.files/icon6.gif", "default.files/icon6o.gif", "", "", "", "", "", ],
  ["|Parameters Info","testlink.html", "default.files/icon2.gif", "default.files/icon2o.gif", "", "", "0", "", "", ], //style0
  ["|Dynamic Functions","testlink.html", "default.files/icon2.gif", "default.files/icon2o.gif", "", "", "1", "", "", ], //style0
  ["|Supported Browsers","", "default.files/icon2.gif", "default.files/icon2o.gif", "", "", "0", "", "", ], //style0
    ["||Windows OS","", "default.files/icon3.gif", "default.files/icon3o.gif", "", "", "", "", "", ],
    ["||Internet Explorer","", "default.files/icon5.gif", "default.files/icon5o.gif", "", "", "", "", "", ],
    ["||Firefox","", "default.files/icon5.gif", "default.files/icon5o.gif", "", "", "", "", "", ],
    ["||Mozilla","", "default.files/icon5.gif", "default.files/icon5o.gif", "", "", "", "", "", ],
    ["||Netscape","", "default.files/icon5.gif", "default.files/icon5o.gif", "", "", "", "", "", ],
    ["||Opera","", "default.files/icon5.gif", "default.files/icon5o.gif", "", "", "", "", "", ],
    ["||MAC OS","", "default.files/icon3.gif", "default.files/icon3o.gif", "", "", "", "", "", ],
    ["||Firefox","", "default.files/icon5.gif", "default.files/icon5o.gif", "", "", "", "", "", ],
Q: In javascriptcoding I have id of the submenu. How can retrieve id of the parent menu item in the drop-down menus?
A: You can try to use the following function
function dm_ext_getSubmenuParams (menuInd, submenuInd)
Returns submenu parameters in the array:
 [submenu_id, items_count, parent_item_id, submenu_level, is_horizontal]
menuInd - index of a menu on a page, >= 0.
submenuInd - index of a submenu, >= 0.
Using this function you can retrieve the parent_item_id.
More info see:
http://deluxe-menu.com/functions-info.html
Q: I would like to know how to define separator on itemstyle or how to show separator on menu items. 
 Thanking you in advance. 
A:  You should set a separator in the menuItems, for example: 
  var menuItems = [ 
 ["Home","index.cfm", , , , , , , , ], 
 ["-"], 
 ["About Us","about.cfm", , , , , , , , ], 
]; 
Please, see the following parameters: 
//--- Separators 
  var separatorImage=""; //for subitems 
  var separatorWidth="100%"; 
  var separatorHeight="3px"; 
  var separatorAlignment="right"; 
  var separatorVImage="images/public/separator.gif"; //for the top items 
  var separatorVWidth="100%"; 
  var separatorVHeight="2px"; 
  var separatorPadding="";