Recent Questions
Q: I am testing a trial version of your Deluxe Tuner software. 
 I cannot configure the actual links or link names? 
 How do I do this? 
A:  You can assign link for each item. 
Please, use Deluxe Tuner. In the "Item parameters" window you can set text, link, target, iconsfor the menu items.
Q: I am trying to have the selected top menu w dhtml item remain on the mouseover event after it is selected. It seemed to be working fine when i was just testing with # as a link but when i actually linked to different pages it returns to normal. How do i get this to work. 
 I tried removing the variable from the data file and calling it using 
 <script type="text/javascript" language="JavaScript1.2">   var pressedItem=set 1,2,3 depending on page </script>
 but this does not seem to work as it does for tabs. 
A:  You can find more info here:
http://www.deluxe-menu.com/highlighted-items-sample.html
Deluxe Menu has only two states normal and mouseover.
Try to do the following things:
- delete   var pressedItem=1; parameter from your data file
- set correct parameter on each page before you call data file, forexample:
<noscript><a href="http://deluxe-menu.com">menu w dhtml by Deluxe-Menu.com</a></noscript>
<script type="text/javascript">  var dmWorkPath = "menudir/";</script>
<script type="text/javascript" src="menudir/dmenu.js"></script>
<script type="text/javascript">  var pressedItem=3;</script>
...
<script type="text/javascript" src="menudir/data.js"></script>
You can also set a pressed item using Javascript API:
function dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion) 
Sets a current pressed item. 
menuInd - index of a menu on a page, >= 0. 
submenuInd - index of a submenu, >= 0. 
itemInd - index of an item, >=0. 
recursion = true/false - highlight parent items. 
But notice, to use dm_ext_setPressedItem() you should know ID of selected item and subitem. 
You can't get this ID after you reload your page. That is why you should write your own code on PHP.
Q: For each item in my menu, can I specify an image in place of text or background? 
A: If you want to use images instead item text, you should useindividual item styles. For example: 
  var itemStyles = [ 
 ["itemWidth=200", "itemBackImage=image1.gif,image2.gif"], // style 0 
 ["itemWidth=150", "itemBackImage=image3.gif,image4.gif"], // style 1 
]; 
  var menuItems = [ 
 [" ", "link", "", "", "tip", "target", "0"], 
 [" ", "link", "", "", "tip", "target", "1"], 
]; 
Where "0", "1" - style number in itemStyles. 
Please, use Deluxe Tuner application to create and assign individualstyles. You can find Deluxe Tuner in the trial package.
Q: Is it possible to make the javascript menu buttons and the text bigger? Or at least the text larger?
 Right now the text is so small that they actually look a little blurry.
 The only font I can increase is the font on the dropdown menus. but I cant change the font that appear on the actual tabs. If I could increase the font on them that would be great. 
A: You should change font in Individual styles.
  var itemStyles = [
 ["itemWidth=92px","itemHeight=21px","itemBackImage=http://www.pursepage.com/wp-content/themes/pinkdoubleheader/data.files/btn_magentablack.gif,http://www.pursepage.com/wp-content/themes/pinkdoubleheader/data.files/btn_magenta.gif","itemBorderWidth=0", "fontStyle='normal 14px Arial','normal 14px Arial'","fontColor=#FFFFFF,#FFFFFF"],
];