Recent Questions
Q: I have another question:
 Menu behavior in SAFARI is does not properly work compared to EXPLORER.
 If you have a look at the site via SAFARI, please do the following:
 Example:
 Under menu "Projets" select "par pays" then "Afrique" then "Algerie".
 It will then show a left hand menu. Please select "2008/2010".
 It will correctly show content.
 Then if you try to select again via menu "Projets"; the html menu navigation does not show anymore the submenus. You still need to click a menu without submenus, like "News", and then afterwards you can click "Projets" and the system will again show submenus.
 This strange behaviour does not appear in EXPLORER nor in FIREFOX. 
A: 	The problem is in your frame structure after you open "Projets" select "par pays" then "Afrique" then "Algerie".
Your menu won't work correctly with such frame structure.
You should use the following frame structure for all pages at once:
--------------------------------------------------------
topFrame with the html menu navigation 
--------------------------------------------------------
 Algerie_leftFrame |
 with | Algerie_mainFrame
 Tree Menu |
--------------------------------------------------------
bottomFrame
--------------------------------------------------------
and write your init function in the following way:
dm_initFrame("frmSet", 0, 2, 0);
Or you shouldn't use Algerie_leftFrame and Algerie_mainFrame at all (use one mainFrame) and write your init function in the following way:
dm_initFrame("frmSet", 0, 1, 0);
Q: When doing a mouseover over the menu options, the java menu web submenus are supposed to all drop down. However, some of the submenus go up instead of down. How do I fix that? 
A:  You should set the following java menu web parameter:
  var subMenuVAlign="top";
Q: We are facing a problem with display of deluxe menu in Internet explorer 7.0
Java script menuis displaying fine in Mozilla Firefox & Internet Exploer 6.0.
 
 A: Your browser has JavaScript option disabled.
It means that no one JavaScript element can be run.
You should to enable JavaScript in IE:
Tools -> Internet Options -> Security -> Custom level... -> Scripting -> Active Scripting = Enable
There is no way to enable these preferences automatically, in othercase there are no reasons to create security preferences.
You can use search engine friendly code, so you'll see all yourlinks (for the main items and submenus) when your security settings in IE doesn't allow Javascript.
You can generate search engine friendly code.
 Deluxe Menu is a search engine friendly menu since v1.12.
To create a search engine friendly menu you should add additional html code within your html page:
<div id="dmlinks"> 
<a href="menu_link1">menu_item_text1</a> 
<a href="menu_link2">menu_item_text2</a>
...etc. 
</div> 
To generate such a code use Deluxe Tuner application.
You can find this GUI in the trial package. 
Run Tuner, load your menu and click Tools/Generate SE-friendly Code (F3).
Q: We are testing you menu in our application. It is being used in cross frame mode. It works very nicely except a couple issues. 
 The main one is after loading a new page in the sub menus window when I go back to the main menu to select another option but on the initial mouse over it takes several seconds for the menu to come up. Once the delay of loading the initial submenu is over it loads all others very quickly until a new page is loaded again. Is there a way to optimize the menu to reduce this load time? I have already set dm_writeAll=0 but that only increased the speed of the initial display of the main menu. 
 And the other question is does the dmObjectsCheck option work in cross frame mode? I have it set =1 and the submenus still underneath objects (such as select list) which have a higher z order.
 
A: Try to do the following: 
move all <script> calls into <head>, but delete dm_initFrame()function from data .js file -- move them instead of files calls, i.e.: 
<head> 
 <script src=data.js> 
 ... 
</head> 
... 
<div><script>dm_initFrame("frmSet", 1, 2, 1); </script></div> 
It this case data will be loaded when <head> will load, but after thatmenus must be shown quickly.
Let me know about results. 
Deluxe Menu overlap select objects in cross-frame mode.