Recent Questions
Q: I cannot see my menu in IE7. Please, help!
 
A:  Try to set exact value for the menu width 
  var menuWidth="700px"; 
Try that.
Q: How I make to insert a code java in the event on click of the button "Ok", when this button is simple tree view? 
A: You are able to paste any html code within items.
For example:
  var tmenuItems = [
...
 ["<nobr><FORM method=GET action='http://www.google.com/custom'>
<nput name='as_q' value='searchthe web' size=15 style='font-size:10'> <INPUT type=hidden name=cof
 value='LW:144;L:http://domain.edu/images/sulogo.gif;LH:45;AH:center;GL:0;S:http://domain.edu;AWFID:e01cb67b8afe383e;'></form></nobr>","",
 "images/icons/search.gif", "", "", "", "", "", "", "", "",],
 You should write your own code within tmenuItem.
Q: The nav is currently to the left of a flash animated area.
 And when a link in the dropdown menu is hovered upon the box opens 
but the flash turns white below the nav box.
A: You should add "opaque" parameter for <object> and <embed> tags.
See, how you should install flash on your pages.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
 codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
height="150" width="800">
<param name="movie" value="2008 flash.swf">
<param name="quality" value="high">
<param name="wmode" value="opaque">
<embed src="flash_files/2008%2520flash.swf" quality="high" wmode="opaque"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" height="150" width="800">
</object>
Submenus will overlap flash correctly in that case.
Q: Could you please help me with another question? 
 I am using your regular dhtml menu inside an asp page. 
 I want to make a call to different javascripts with parameters from different menu items (Which should work fine.. ) 
 I have now been trying to do this by using the alert() java metod....
 This line works perfect: 
  ["|Test A","javascript:alert('Test');", "", "", "", "", "0", "-1", "", ], 
 But if I try to write the same line within ASP brachets ( <% %> ) the menu does not show up: 
 <% 
 response.Write( " ['|Test A','javascript:alert('Test');', '', '', '', '', '0', '-1', '', ], " ) 
%>> 
 I have also found that if I remove the parameter inside the javascript like this: 
 <% 
 response.Write( " ['|Test A','javascript:alert();', '', '', '', '', '0', '-1', '', ], " ) 
%>> 
 the menu will show up and the script will work but since I can not insert any parameter it is pointless.. 
 How can I achieve this? 
I really hope you can help me with this one!
A:  Try to write your code in the following way: 
<% 
response.Write( " ['|Test A','javascript:alert(\'Test\');', '', '', '', '', '0', '-1', '', ], " ) 
%>