/* -------------------------------------- Top Menu --------------------------------------- */
var MENU_POS_TOP = new Array();
	// item sizes for different levels of menu
	MENU_POS_TOP['height'] = [18, 20, 20];
	MENU_POS_TOP['width'] = [70, 180, 180];

	// 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_TOP['block_top'] = [124, 20, 0];
	MENU_POS_TOP['block_left'] = [22, 0, 181];

	// offsets between items of the same level
	MENU_POS_TOP['top'] = [0, 21, 21];
	MENU_POS_TOP['left'] = [75, 0, 0];

	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS_TOP['hide_delay'] = [200, 200, 200];
/* ---------------------------------------------------------------------------------------- */

/* -------------------------------------- Left Menu --------------------------------------- */
var MENU_POS_LEFT = new Array();
	// item sizes for different levels of menu
	MENU_POS_LEFT['width'] = [160, 160, 160];
	MENU_POS_LEFT['height'] = [21, 20, 0];

	// 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_LEFT['block_top'] = [102, 10, 10];
	MENU_POS_LEFT['block_left'] = [10, 100, 100];

	// offsets between items of the same level
	MENU_POS_LEFT['top'] = [20, 20, 21];
	MENU_POS_LEFT['left'] = [0, 0, 0];
	
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS_LEFT['hide_delay'] = [200, 200, 200];
/* ---------------------------------------------------------------------------------------- */

/* -------------------------------- Left Menu with Top Menu ------------------------------- */
var MENU_POS_LEFT_MENU = new Array();
	// item sizes for different levels of menu
	MENU_POS_LEFT_MENU['width'] = [130, 130, 130];
	MENU_POS_LEFT_MENU['height'] = [21, 20, 0];

	// 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_LEFT_MENU['block_top'] = [160, 10, 10];
	MENU_POS_LEFT_MENU['block_left'] = [5, 100, 100];

	// offsets between items of the same level
	MENU_POS_LEFT_MENU['top'] = [20, 20, 21];
	MENU_POS_LEFT_MENU['left'] = [0, 0, 0];
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS_LEFT_MENU['hide_delay'] = [200, 200, 200];
/* ---------------------------------------------------------------------------------------- */