/* --- geometry and timing of the menu --- */
var MENU_POS_LIB = new Array();

	// item sizes for different levels of menu
	MENU_POS_LIB['height']     = [29, 22];
	MENU_POS_LIB['width']      = [95, 200];

	// 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
	//                        ypos and offset
	MENU_POS_LIB['block_top']  = [92, 29];
	//                        xpos
	MENU_POS_LIB['block_left'] = [449, 0];

	// offsets between items of the same level
	MENU_POS_LIB['top']        = [20, 22];
	MENU_POS_LIB['left']       = [0, 0];

	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS_LIB['hide_delay'] = [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_POS_ABOUT = new Array();

	// item sizes for different levels of menu
	MENU_POS_ABOUT['height']     = [29, 22];
	MENU_POS_ABOUT['width']      = [95, 225];

	// 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
	//                        ypos and offset
	MENU_POS_ABOUT['block_top']  = [92, 29];
	//                        xpos
	MENU_POS_ABOUT['block_left'] = [257, 0];

	// offsets between items of the same level
	MENU_POS_ABOUT['top']        = [20, 22];
	MENU_POS_ABOUT['left']       = [0, 0];

	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS_ABOUT['hide_delay'] = [200, 200];

var MENU_POS_HELP = new Array();

	// item sizes for different levels of menu
	MENU_POS_HELP['height']     = [29, 22];
	MENU_POS_HELP['width']      = [95, 95];

	// 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
	//                        ypos and offset
	MENU_POS_HELP['block_top']  = [92, 29];
	//                        xpos
	MENU_POS_HELP['block_left'] = [353, 0];

	// offsets between items of the same level
	MENU_POS_HELP['top']        = [20, 22];
	MENU_POS_HELP['left']       = [0, 0];

	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS_HELP['hide_delay'] = [200, 200];

var MENU_POS_CUS = new Array();

	// item sizes for different levels of menu
	MENU_POS_CUS['height']     = [29, 22];
	MENU_POS_CUS['width']      = [95, 178];

	// 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
	//                        ypos and offset
	MENU_POS_CUS['block_top']  = [92, 29];
	//                        xpos
	MENU_POS_CUS['block_left'] = [545, 0];

	// offsets between items of the same level
	MENU_POS_CUS['top']        = [20, 22];
	MENU_POS_CUS['left']       = [0, 0];

	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS_CUS['hide_delay'] = [200, 200];

var MENU_STYLES_ABOUT = new Array();

	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES_ABOUT['onmouseout'] = [
		'color', ['transparent', '#ffffff'],
		'background', ['transparent', '#df0023'],
	];

	// state when item has mouse over it
	MENU_STYLES_ABOUT['onmouseover'] = [
		'color', ['transparent', '#df0023'],
		'background', ['transparent', '#ffffff'],
	];

	// state when mouse button has been pressed on the item
	MENU_STYLES_ABOUT['onmousedown'] = [
		'color', ['transparent', '#000000'],
		'background', ['transparent', '#ffffff'],
	];

var MENU_STYLES_HELP = new Array();

	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES_HELP['onmouseout'] = [
		'color', ['transparent', '#ffffff'],
		'background', ['transparent', '#df0023'],
	];

	// state when item has mouse over it
	MENU_STYLES_HELP['onmouseover'] = [
		'color', ['transparent', '#df0023'],
		'background', ['transparent', '#ffffff'],
	];

	// state when mouse button has been pressed on the item
	MENU_STYLES_HELP['onmousedown'] = [
		'color', ['transparent', '#000000'],
		'background', ['transparent', '#ffffff'],
	];

var MENU_STYLES_LIB = new Array();

	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES_LIB['onmouseout'] = [
		'color', ['transparent', '#ffffff'],
		'background', ['transparent', '#df0023'],
	];

	// state when item has mouse over it
	MENU_STYLES_LIB['onmouseover'] = [
		'color', ['transparent', '#df0023'],
		'background', ['transparent', '#ffffff'],
	];

	// state when mouse button has been pressed on the item
	MENU_STYLES_LIB['onmousedown'] = [
		'color', ['transparent', '#000000'],
		'background', ['transparent', '#ffffff'],
	];

var MENU_STYLES_CUS = new Array();

	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES_CUS['onmouseout'] = [
		'color', ['transparent', '#ffffff'],
		'background', ['transparent', '#df0023'],
	];

	// state when item has mouse over it
	MENU_STYLES_CUS['onmouseover'] = [
		'color', ['transparent', '#df0023'],
		'background', ['transparent', '#ffffff'],
	];

	// state when mouse button has been pressed on the item
	MENU_STYLES_CUS['onmousedown'] = [
		'color', ['transparent', '#000000'],
		'background', ['transparent', '#ffffff'],
	];

