/* --- geometry and timing of the menu --- 
	values are the lists with parameters for different menu levels
	for this menu: [blue_level, green_level, red_level]
*/


/* --- dynamic menu styles ---
note: you can add as many style properties as you wish but be not all browsers
are able to render them correctly. The only relatively safe properties are
'color' and 'background'.
*/
var MENU_STYLES = {
	// default item state when it is visible but doesn't have mouse over
	'onmouseout': [
		'color', ['white', 'white', 'white'], 
		'background', ['#6666CC', '#6666CC', '#6666CC'],
		'textDecoration', ['none', 'none', 'none'],
		'fontWeight', ['bold', 'bold', 'bold'],
	],
	// state when item has mouse over it
	'onmouseover': [
		'color', ['#6666CC', '#6666CC', '#6666CC'], 
		'background', ['#CCCCFF', '#CCCCFF', '#CCCCFF'],
		'textDecoration', ['none', 'none', 'none'],
		'fontWeight', ['bold', 'bold', 'bold'],
	],
	// state when mouse button has been pressed on the item
	'onmousedown': [
		'color', ['#6666CC', '#6666CC', '#6666CC'], 
		'background', ['#CCCCFF', '#CCCCFF', '#CCCCFF'],
		'textDecoration', ['underline', 'none', 'none'],
		'fontWeight', ['bold', 'bold', 'bold'],
	]
};
	
