Recent Questions
Q: Can I just have the date displayed without the time in the javascript calendar date selector?
A:  But you can chose the output data format.
See more info:
http://www.calendardatepicker.com/parameters.html#param
 calendarDatePicker.handlers( ['txt', 'txt', {type : 'date', format: '%d-%m-%Y'}] );
 The result will be: 12-02-2009 
Q: Would it be possible to introduce more font decoration options to the mouseover variables for the horizontal navigation?I would like to add bold as a mouseover font decoration, but obviously this is not possible at the moment.
A: Unfortunately, Deluxe Menu doesn't have such a feature.
 You can onlyset it's color. You cannot set the font of menu item bold when selected.
You should addthe following code in your data file:
function changeFont(obj, over)
{
 obj.style.fontWeight = over ? 'bold' : 'normal';
 obj.style.fontSize = over ? '13px' : '12px'; // You can not use this line
}
  var menuItems = [
 ["<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>Security</div>","", "", "", "", "", "", "", "", ],
 ["<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>Ease of Access</div>","", "", "", "", "", "", "", "", ],
  ["|<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>Internet Options</div>","", "", "", "", "", "", "", "", ],
  ["|<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>Windows Firewall</div>","", "", "", "", "", "", "", "", ],
 ["<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>Network and Internet</div>","", "", "", "", "", "", "", "", ],
 ["<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>Hardware</div>","", "", "", "", "", "", "", "", ],
Q: How can I make top items different colors in the dhtml pop up menu? 
A: You should create 6 Individual Styles and assign them to you topitems.
  var itemStyles = [
 ["itemBackColor=#0000ff,#0000ff","showByClick=0"], //style 0
 ["itemBackColor=#FF00FF,#FF00FF","showByClick=0"], //style 1
 ["itemBackColor=#00ffff,#00ffff","showByClick=0"], //style 2
 ["itemBackColor=#00ff00,#00ff00","showByClick=0"], //style 3
 ["itemBackColor=#FFFF00,#FFFF00","showByClick=0"], //style 4
 ["itemBackColor=#FF0000,#FF0000","showByClick=0"], //style 5
];
 ["Find out Who we are","http://www.yoursite.org/", "", "", "", "", "0", "0", "", "", "", ], //style 0
 ["Apply For Fellowship","http://www.yoursite.org/info.html", "", "", "", "_blank", "1", "", "", "", "", ], //style 1
 ["Fellows Corner","", "", "", "", "", "2", "", "", "", "", ], //style 2
 ["Enroll in a course","", "", "", "", "", "3", "", "", "", "", ], //style 3
 ["Engage in a discussion","", "", "", "", "", "4", "", "", "", "", ], //style 4
 ["Read The Bulletin","", "", "", "", "", "5", "", "", "", "", ], //style 5
Q: What I meant was that there is an API function dm_ext_changeItem that allows you to specify 8 dropdown menu parameters in an array. What if I only want to change one of them like the link for example? What do I specify in my function call to leave the other 7 parameters unchanged? Do I specify the existing values? Or, can I just put in a comma with no parameter? That would be a lot easier. Thank you. 
A:  You should specify only dropdown menu parameters you want to change.
You should just put a commas with no parameters, for example:
dm_ext_changeItem(0, 0, 1, ["Deluxe Menu Info", "", "", "", "Deluxe Menu Hint",,"1"]);