/* --- geometry and timing of the menu --- */
var HOWMENU_POS = new Array();

	// item sizes for different levels of menu
	HOWMENU_POS['height']     = [22, 22, 22];
	HOWMENU_POS['width']      = [100, 150, 150];

	// menu block offset from the origin:
	//  for root level origin is upper left corner of the page
	//  for other levels origin is upper left corner of parent item
	HOWMENU_POS['block_top']  = [175, 30, 0];
	HOWMENU_POS['block_left'] = [210, 0, 150];

	// offsets between items of the same level
	HOWMENU_POS['top']        = [0, 23, 23];
	HOWMENU_POS['left']       = [70, 0, 0];

	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	HOWMENU_POS['hide_delay'] = [300, 300, 300];

/* --- 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 HOWMENU_STYLES = new Array();

	// default item state when it is visible but doesn't have mouse over
	HOWMENU_STYLES['onmouseout'] = [
		'background', ['transparent', '#ffffff', '#ffffff'],
		'color', ['#000000', '#000000', '#000000'],
	];

	// state when item has mouse over it
	HOWMENU_STYLES['onmouseover'] = [
		'background', ['transparent', '#ffffff', '#ffffff'],
		'color', ['#e8442a', '#e8442a', '#e8442a'],
	];

	// state when mouse button has been pressed on the item
	HOWMENU_STYLES['onmousedown'] = [
		'background', ['transparent', '#ffffff', '#ffffff'],
		'color', ['#000000', '#000000', '#000000'],
	];
	
