var MENU_POS1 = new Array();
	// item sizes for different levels of menu
	MENU_POS1['height'] = [21, 19, 29];
	MENU_POS1['width'] = [125, 148, 210];
	// menu block offset from the origin:
	MENU_POS1['block_top'] = [89, 25, 0];
	MENU_POS1['block_left'] = [275, 0, 200];
	// offsets between items of the same level
	MENU_POS1['top'] = [0, 20, 25];
	MENU_POS1['left'] = [110, 0, 0];
	// of any items
	MENU_POS1['hide_delay'] = [200, 200, 200];
	
/* --- dynamic menu styles ---
*/
var MENU_STYLES1 = new Array();
	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES1['onmouseout'] = [
		'color', ['#ffffff', '#ffffff', '#ffffff'], 
		'background', ['#1C2220', '#333333', '#666666'],
		'fontWeight', ['Bold', 'Bold', 'bold'],
		'textDecoration', ['none', 'none', 'none'],
		
	];
	// state when item has mouse over it
	MENU_STYLES1['onmouseover'] = [
		'color', ['#ffffff', '#FF0000', '#FF0000'], 
		'background', ['#1C2220', '#333333', '#666666'],
		'fontWeight', ['bold', 'bold', 'bold'],
		'textDecoration', ['underline', 'none', 'none'],
		
	];
	// state when mouse button has been pressed on the item
	MENU_STYLES1['onmousedown'] = [

		'color', ['#ffffff', '#000000', '#000000'], 
		'background', ['#1C2220', '#1C2220', '#1C2220'],
		'fontWeight', ['bold', 'bold', 'bold'],
		'textDecoration', ['underline', 'none', 'none'],
		
	];
