/* --- geometry and timing of the menu --- */
var MENU_POS = {
	// wielkosc elementow
	'width': [160, 130, 100],
	'height': [20, 20, 20],
	// odstep submenu w stosunku do oryginalu:
	// od gory
	// od lewej
	'block_top': [79, 15, 17],
	'block_left': [20, 45, -45],
	// odstep miedzy wpisami w tym samym menu (od góry, od lewej);
	'top': [19, 19, 19],
	'left': [0, 0, 0],
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	'hide_delay': [50, 100, 100]
};
	
/* --- 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', ['#1c4399', '#1c4399', '#1c4399'],
		'background', ['#e8dbe4', '#e8dbe4', '#e8dbe4'],
	],
	// state when item has mouse over it
	'onmouseover': [
		'color', ['#1c4399', '#1c4399', '#1c4399'],
		'background', ['#debdd3', '#debdd3', '#debdd3'],
	],
	'onmousedown': [
		'color', ['#1c4399', '#1c4399', '#1c4399'],
		'background', ['#debdd3', '#debdd3', '#debdd3'],
	]
};
	
