Recent Questions
Q: Where can I give the body of the javascript method which I use in cool dhtml menu? 
A: You can define functions after menuItems, before you call dm_init();function. 
   var menuItems = [ 
 ["text", "javascript:your_function(...)", ...] 
 ]; 
Where your_function(...): 
function your_function(...) 
{ 
 ..... 
}
Q: Hello, I very much like your components and will most likely buy one or more (or all!) of them for multi domain use after evaluating, I am however finding a problem with the Deluxe Popup javascript menu windows when it contains Flash content and I am resizing the window in IE6 or IE7, is this a known issue? Do you need an example of what I am referring to? We intend to use a lot of Flash content inside the windows so this is a big issue I need to resolve or workaround somehow, it seems fine in other browsers however.
 Also do you have examples of how a window can be manipulated after creation, for example altering its position, width/height, window title and content etc with JS? Such an example would probably save me time evaluating. 
A: 		To overlap your flash file you should add opaque parametersto your flash, for example:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
width="566" height="250" title="Intro">
 <param name="movie" value="/includes/banner_final3d.swf" />
 <param name="wmode" value="opaque">
 <param name="quality" value="high" />
 <embed src="/includes/banner_final3d.swf" quality="high" wmode="opaque" pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" width="566" height="250"></embed>
 </object>
 You can find more info about menu parameters on our website:
http://www.deluxepopupwindow.com/parameters.htmlQ: I'm having a problem with the new v3.9.2 javascript menu source. The drop-down submenus are now going "up" instead of "down".
 I've tried the conversion steps in your email and I have even rebuilt the menu from scratch in v3.9.2. In the Deluxe Menu Preview window, the drop-down sub-menus behave properly - transitioning down below the horizontal menu. But it FireFox3, IE7 and Chrome the submenus appear above the horizontal menu.
 Also... the transition effect (24 - Alpha Blend) only appears in IE7 - it is not evident in FireFox3 or in Chrome. 
A:  Set the following parameter:
  var subMenuVAlign="top";
> Also... the transition effect (24 - Alpha Blend) only appears in IE7 - it is
> not evident in FireFox3 or in Chrome.
Transitional effects are features of Internet Explorer 5.5+ only.
See more info:
http://deluxe-menu.com/filters-and-effects-sample.htmlQ: I need a web navigation bar with a transparent background for the menu and the submenues.
A: You can set the following parameters:
  var menuBackColor="transparent";
  var itemBackColor=["transparent","transparent"];
You can set transparency for submenus using the following parameter:
  var transparency="70";