Recent Questions
Q: Now, one more little question -
 in a Tree menu, I know how to make a menu expand by default and expand only on a mouse click. 
 However, I believe there is a way to make a menu item expand on a "mouse over" without a click. 
 How can this be done? 
A:  No, unfortunately it is not possible to expand the tree menu onmouseover now. It is possible that we'll add this feature in the nextversion.
Q: I need to know if it is possible to call a JavaScript function from the cool dhtml menu.
 I have read the FAQ and noted where it lists that you can perform an alert call, and that worked on my end as well, but when Iattempted to call a function I created I could not get it torespond.
 Is it possible to call a function from your menu? 
 Could Iget an example?
A: You can write your own functions within menuItems, for example:
 ["|Real-Time Data Query","javascript:window.open('http://www.domain.org/','_blank','height=758,width=1024,status=yes,toolbar=no,menubar=no,location=no');"
,,,'Query real time water quality data' ,'' , '', '', ,],
Q: I am trying to use the following horizontal tabs menu: 
http://deluxe-tabs.com/file/templates/deluxe-tabs-style-3.html 
 My problem is that the bitebackimage is not showing as you can see in the example below. 
 All the left and right side images appear, but not the repeating button background. All the images are in the same directory and have the same URL to point to them. 
 Any ideas on what the problem might be?
A:  The reason is in your styles. Now you have in style.css file: 
TABLE { 
 FONT-SIZE: 10pt; BACKGROUND-REPEAT: no-repeat; FONT-FAMILY: Arial,Helvetica,sans-serif 
} 
TR { 
 FONT-SIZE: 10pt; BACKGROUND-REPEAT: no-repeat; FONT-FAMILY: Arial,Helvetica,sans-serif 
} 
TD { 
 FONT-SIZE: 10pt; BACKGROUND-REPEAT: no-repeat; FONT-FAMILY: Arial,Helvetica,sans-serif 
} 
You should write: 
TABLE { 
 FONT-SIZE: 10pt; FONT-FAMILY: Arial,Helvetica,sans-serif 
} 
TR { 
 FONT-SIZE: 10pt; FONT-FAMILY: Arial,Helvetica,sans-serif 
} 
TD { 
 FONT-SIZE: 10pt; FONT-FAMILY: Arial,Helvetica,sans-serif 
}
Q: I'm just trying out your trial version of deluxe menu with the menu tuner for a current website I am building. But I don't know how to use a template for a menu. Could you please guide me in the right direction as soon as you can??
A:  Unfortunately we don't have step by step tutorial now. We'll try tocreate it in the nearest time.
HTML version of Deluxe Tuner (MAC version) can be downloaded
http://deluxe-menu.com/deluxe-tuner-html.zip
See more info:
http://deluxe-menu.com/deluxe-tuner-info.html
1. Create your menu in Deluxe Tuner application.
You can create any menu as you like in Deluxe Tuner.
You can use ready to use templates. I'm sending you package with alltemplates. Just open data file in Deluxe Tuner.
Add items and subitems using buttons "Add Item" and "Add Subitem" onthe main window.
You should set items and subitems parameters on the "Item Parameters"window.
See also other parameters for the menu on the main window.
More info about menu parameters you can find on our site (you can alsouse local version of the site which you can find in the trial package"Deluxe Menu / deluxe-menu.com /")
http://deluxe-menu.com/parameters-info.html
http://deluxe-menu.com/menu-items-info.html
You can also use Individual Styles for items and subitems
http://deluxe-menu.com/individual-item-styles-info.html
http://deluxe-menu.com/individual-submenu-styles-info.html
2. You should install the menu on your page.
Add several rows into your html page.
<head>
...
 <!-- Deluxe Menu -->
 <noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript>
 <script type="text/javascript">  var dmWorkPath="deluxe-menu.files/";</script>
 <script type="text/javascript" src="deluxe-menu.files/dmenu.js"></script>
 <script type="text/javascript" src="data-deluxe-menu.js"></script> //data-deluxe-menu.js - data file created in Deluxe Tuner.
...
</head>
<body>
...
<table>
<tr><td><script type="text/javascript" src="deluxe-menu.files/data.js"></script></td></tr>
</table> 
...
</body>
You should also copy all engine files
dmenu.js
dmenu4.js
dmenu_add.js
dmenu_dyn.js
dmenu_key.js
dmenu_cf.js
dmenu_popup.js
dmenu_ajax.js
into "deluxe-menu.files/" folder. You should place this folder in thesame folder with your index. html page.