/* --- geometry and timing of the menu --- */
var MENU_POS2 = new Array();
	// item sizes for different levels of menu
	MENU_POS2['width'] = [150, 150, 130];
	MENU_POS2['height'] = [15, 15, 15];
	// 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
	MENU_POS2['block_top'] = [110, 0, 0];
	MENU_POS2['block_left'] = [0, 130, 110];
	// offsets between items of the same level
	MENU_POS2['top'] = [19, 15, 15];
	MENU_POS2['left'] = [0, 0, 0];
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS2['hide_delay'] = [250, 250, 250];
	
/* --- 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_STYLES2 = new Array();
	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES2['onmouseout'] = [
		'color', ['#000000', '#000000', '#000000'],
		'marginLeft', ['4px', '4px', '4px',],
		'fontFamily', ['arial', 'arial', 'arial'],
		'fontSize', ['11px', '11px', '11px',],
		'fontWeight', ['normal', 'normal', 'normal'],
		'background', ['#EAEAEA', '#EAEAEA', '#EAEAEA'],
		'textDecoration', ['none', 'none', 'none'],
	];
	// state when item has mouse over it
	MENU_STYLES2['onmouseover'] = [
		'color', ['#000000', '#000000', '#000000'], 
		'marginLeft', ['4px', '4px', '4px',],
		'fontSize', ['11px', '11px', '11px',],
		'fontFamily', ['arial', 'arial', 'arial'],
		'background', ['#F9F9F9', '#F9F9F9', '#F9F9F9'],
		'fontWeight', ['normal', 'normal', 'normal'],
		'textDecoration', ['none', 'none', 'none'],
	];
	MENU_STYLES2['onmousedown'] = [
		'color', ['#000000', '#000000', '#000000'], 
		'marginLeft', ['4px', '4px', '4px',],
		'fontSize', ['11px', '11px', '11px',],
		'fontFamily', ['arial', 'arial', 'arial'],
		'fontWeight', ['normal', 'normal', 'normal'],
		'background', ['#cccccc', '#cccccc', '#cccccc'],
		'textDecoration', ['none', 'none', 'none'],
	];
	
