Recent Questions
Q: We had a strange problem with the menus when the sub menus are over applet in https: the applet disappeared.
 After doing some Investigation in your code we noticed that you are using in HTTPS mode div instead of Iframe. 
 We would be happy if you can tell us why you are using div in this mode and if we will use http mode will it cause something that can affect the menus 
A:  Iframes don't work on https:// websites. You'll get warning message. That's why we're using <div> tag.If for some reasons a submenu can't drop down over an object the latterwill be hidden for a time when the submenu is shown. 
If you use Deluxe Menu on https:// website, submenus won't drop downover select boxes within iframe objects. It works fine on a non-secureservers only.
Q: I'm having trouble getting some of my dhtml menus free opening in the frm2. If you look under products, then Hard drives, then Rugged Airborne .....this one and Rugged Ground will not open in frm2 but the Contact Us and Get Quote are working fine. Can you help me get these things to open in a frm2. 
A:  You should write your menu items correctly.
Now you have
    ["||Rugged Airborne","../RuggedAirborne.htm","Airborne,"frm2","0", ],
    ["||Rugged Ground","../RuggedGround.htm","Ground","frm2","0", ],
it is not correct.
You should write:
    ["||Rugged Airborne","../RuggedAirborne.htm","","","Airborne,"frm2","0", ],
    ["||Rugged Ground","../RuggedGround.htm","","","Ground","frm2","0", ],
Q: Is it possibly that menu dynamic remembers the last action if I go to previous page?(so the menu stays fault out)
I know TreeMenu does this, but I want to use DeLuxeMenu
A: Deluxe Menu doesn't save state as Deluxe Tree.
But you can set pressed item on each page with Deluxe Menu using
dm_ext_setPressedItem () funtion.
Find more info:
http://deluxe-menu.com/highlighted-items-sample.html Q: When I roll my mouse over my menu, it appears halfway down the page, not next to the menu. This only happens when I enclose the code in <div></div> layers. Is there a way to fix this? 
A: It is possible that you have some problems with your css. 
 The problem is that the script can't get css properties of the object if they are described in separate .css block (or file).In other words, you can't get the value of "position" attribute of the object if the object doesn't have this property within inline style(style="position:absolute"). To get the value you should move .css style into style="" attribute. 
Please, try to add your 
 css file -> inline css, for example:
You should add <DIV id=SiteMenu> 
to the 
 style="position:absolute;" 
So, you'll have: 
 <DIV id=SiteMenu style="position:absolute;"> 
Check that.