/* --- geometry and timing of the menu --- */
var MENU_POS = new Array();

	// item sizes for different levels of menu
	MENU_POS['height']     = [20, 20, 20];
	MENU_POS['width']      = [250, 150, 130];

	// 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_POS['block_top']  = [80, 21, 7];
	MENU_POS['block_left'] = [20, 0, 120];

	// offsets between items of the same level
	MENU_POS['top']        = [0, 21, 21];
	MENU_POS['left']       = [250, 0, 0];

	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS['hide_delay'] = [500, 500, 500];
	
	

/* --- 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_STYLES = new Array();

	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES['onmouseout'] = [
		'background', ['#484848', '#ffffff', '#ffffff'],
		'color', ['#ffffff', '#373737', '#373737'],
	];

	// state when item has mouse over it
	MENU_STYLES['onmouseover'] = [
		'background', ['#B73431', '#B73431', '#B73431'],
		'color', ['#FFFFFF', '#ffffff', '#ffffff'],
	];

	// state when mouse button has been pressed on the item
	MENU_STYLES['onmousedown'] = [
		'background', ['#777777', '#777777', '#777777'],
		'color', ['#ffffff', '#ffffff', '#ffffff'],
	];
	
/* --- geometry and timing of the menu --- */
var MENU_POS1 = new Array();

	// item sizes for different levels of menu
	MENU_POS1['height']     = [18, 16];
	MENU_POS1['width']      = [90, 140];

	// 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_POS1['block_top']  = [47, -45];
	MENU_POS1['block_left'] = [200, 0];

	// offsets between items of the same level
	MENU_POS1['top']        = [0, 16];
	MENU_POS1['left']       = [90, 0];

	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS1['hide_delay'] = [500, 500];

/* --- 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'] = [
		'background', ['#828282', '#828282'],
		'color', ['#ffffff', '#DDDDDD'],
		];

	// state when item has mouse over it
	MENU_STYLES1['onmouseover'] = [
		'background', ['#E4E4E4', '#828282'],
		'color', ['#000000', '#ffffff'],
				
	];

	// state when mouse button has been pressed on the item
	MENU_STYLES1['onmousedown'] = [
		'background', ['#828282', '#828282'],
		'color', ['#ffffff', '#ffffff'],
	];


