Recent Questions
Q: I have just purchased your menus and no matter where I place the code, the pull down menu in javascript always appears in the top left of the page, I need it elsewhere obviously but it simply won't move.. How do I do this? 
A: 	You're using absolute position for the menu now. You should userelative position in that case. Change the following parameters:
  var absolutePos=0;
  var posX="0px";
  var posY="0px";  >Kehren Sie zu Neuen Fragen zurückQ: I am working on creating a new navigation menu with Tree menu. 
 I wonder how I can reduce the width of the menu? 
A:  You should set this parameter 
  var tmenuWidth = "275px"; 
Try to set also the following parameters: 
  var tlevelDX = 0; 
  var tnoWrap=0; 
Q: I am using your Ajax menu and am generally delighted with it. Its ability to load sub menus on the fly is just what I have been looking for.
 However, I have noticed in IE7 that it can leave sub menus displayed when you have moused off that particular ajax drop down menu. Can this be fixed?
 Also, can you get the menu to disappear when you mouse off the menu, rather than having to hover over another menu or click the page off the menu. 
A:  See, now you've set the following parameter:
  var smHidePause=-1;
It means that your submenus won't be hidden till you click or scroll your page.
If you want to hide your submenus on mouse out you should set another value, for example:
  var smHidePause=1000;
or
  var smHidePause=500;Q: There is one other issue I am hoping you can help with? When the dhtml web menu drops down in Safari over a SWF -- it disappears. I have added the function dm_ext_ruleObjectHide() code to the top of my data file. Can you please advise what else I can try?
A:  Submenu couldn't overlap flash in Safari correctly.
And the following code:
// Safari detect
 if ((parseInt(navigator.productSub)>=20020000) &&(navigator.vendor.indexOf('Apple Computer') != -1) &&(navigator.product=='Gecko'))
 return true;
in function
function dm_ext_ruleObjectHide()
{
// Safari detect
 if ((parseInt(navigator.productSub)>=20020000) &&(navigator.vendor.indexOf('Apple Computer') != -1) &&(navigator.product=='Gecko'))
 return true;
 else
 return false;
}
cause flash to disappear in Safari.
You can try to write this function in the following way:
function dm_ext_ruleObjectHide()
{
 return false;
}