/* --- geometry and timing of the menu --- */
var MENU_POS1 = new Array();
    // defines colored block by cursor hit
	MENU_POS1['height'] = [25, 20, 20];
    // middle number defines square around 2nd level items
	MENU_POS1['width'] = [120, 150, 120];
    // menu block offset from the origin:
	//	1st number defines vertical position of root level
    //  2nd number defines vertical position between root and 2nd level
	MENU_POS1['block_top'] = [180, 25, 1];
    //  1st number defines horizontal position of root level
    //  2nd number defines horizontal position between root and 2nd level
	MENU_POS1['block_left'] = [10, 0, 120];
    // 1st number defines vertical position between root level
    // 2nd number defines vertical position between 2nd level
	MENU_POS1['top'] = [0, 21, 21];
    // 1st number defines horizontal position between root level
	MENU_POS1['left'] = [150, 0, 0];
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS1['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 MENU_STYLES1 = new Array();
	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES1['onmouseout'] = [
		'color', ['beige', 'beige', 'beige'], 
		'background', ['navy', '#000099', '#0097F6'],
		'fontWeight', ['normal', 'normal', 'normal'],
		'textDecoration', ['none', 'none', 'none'],
	];
	// state when item has mouse over it
	MENU_STYLES1['onmouseover'] = [
		'color', ['navy', 'beige', 'beige'], 
		'background', ['beige', '#0097F6', '#72B9FC'],
		'fontWeight', ['bold', 'bold', 'bold'],
		'textDecoration', ['none', 'none', 'none'],
	];
	// state when mouse button has been pressed on the item
	MENU_STYLES1['onmousedown'] = [
		'color', ['#ffffff', '#ffffff', '#ffffff'], 
		'background', ['navy', '#000099', '#0097F6'],
		'fontWeight', ['normal', 'normal', 'normal'],
		'textDecoration', ['none', 'none', 'none'],
	];
	
