/* --- geometry and timing of the menu --- */
var HMENU_POS = new Array();

	// item sizes for different levels of menu
	HMENU_POS['height']     = [20, 22, 22];
	HMENU_POS['width']      = [87, 150, 120];

	// 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
	HMENU_POS['block_top']  = [103, 30, 0];
	HMENU_POS['block_left'] = [377, 0, 151];

	// offsets between items of the same level
	HMENU_POS['top']        = [0, 23, 20];
	HMENU_POS['left']       = [88, 0, 0];

	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	HMENU_POS['hide_delay'] = [200, 200, 200];

/* --- 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 HMENU_STYLES = new Array();

	// default item state when it is visible but doesn't have mouse over
	HMENU_STYLES['onmouseout'] = [
		'color', ['#261681', '#261681', '#d30539'],
		'background', ['F9F9F9', '#E0E0E0', '#ffffff'],
	];

	// state when item has mouse over it
	HMENU_STYLES['onmouseover'] = [
		'color', ['#d30539', '#d30539', '#d30539'],
		'background', ['#ffffff', '#F9F9F9', '#ffffff'],
	];

	// state when mouse button has been pressed on the item
	HMENU_STYLES['onmousedown'] = [
		'color', ['#ffffff', '#ffffff', '#000000'],
		'background', ['#336699', '#6699cc', '#99ccff'],
	];
	
