/* --- geometry and timing of the menu --- */
var MENU_POS2 = new Array();
	// item sizes for different levels of menu
	MENU_POS2['width'] = [(document.all?170:169), 193, 193, 193];
	MENU_POS2['height'] = [28, 30, 30, 30];
	// 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_POS2['block_top'] = [485, 0, 0, 0, 0];
	MENU_POS2['block_left'] = [0, (document.all?170:169), (document.all?191:194), (document.all?192:194), (document.all?192:194)];
	// offsets between items of the same level
	MENU_POS2['top'] = [26, 26, 26, 26, 26];
	MENU_POS2['left'] = [0, 0, 0, 0, 0];
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS2['hide_delay'] = [0, 0, 0, 0];
	
/* --- dynamic menu styles ---*/

var MENU_STYLES2 = new Array();
	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES2['onmouseout'] = [
		'backgroundColor', ['#01539D', '#016CB0', '#016CB0', '#016CB0'],
		'borderColor', ['#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF'],
		'fontWeight', ['bold', 'bold', 'bold', 'bold'],
		'color', ['#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF'],
		'textDecoration', ['none', 'none', 'none', 'none'],
		'paddingTop', ['2', '2', '2', '2'],
		'textAlign', ['left', 'left', 'left', 'left'],
	];
	// state when item has mouse over it
	MENU_STYLES2['onmouseover'] = [
		'backgroundColor', ['#016CB0', '#E1E1E1', '#E1E1E1', '#E1E1E1'],
		'borderColor', ['#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF'],
		'fontWeight', ['bold', 'bold', 'bold', 'bold'],
		'color', ['#FFFFFF', '#666666', '#666666', '#666666'],
		'paddingTop', ['2', '2', '2', '2'],
		'textAlign', ['left', 'left', 'left', 'left'],
	];
	MENU_STYLES2['onmousedown'] = [
		'backgroundColor', ['#666666', '#666666', '#666666', '#666666'],
		'borderColor', ['#FFFFFF', '#FFFFFF', '#FFFFFF', '#FFFFFF'],
		'fontWeight', ['bold', 'bold', 'bold', 'bold'],
		'color', ['#FFFFFF', '#000000', '#000000', '#000000'],
		'paddingTop', ['2', '2', '2', '2'],
		'textAlign', ['left', 'left', 'left', 'left'],
	];
	
//FOR THE TOP PAGE MENU:
	
var MENU_STYLES1=new Array();
	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES1['onmouseout'] = [
		'backgroundColor', ['transparent', '#53247f', '#53247f', '#53247f'],
		'borderWidth', ['0', '1', '1', '1'],
		'borderColor', ['transparent', '#cccccc', '#cccccc', '#cccccc'],
		'fontWeight', ['bold', 'normal', 'normal', 'normal'],
		'color', ['#cccccc', '#cccccc', '#cccccc', '#cccccc'],
		'textDecoration', ['none', 'none', 'none', 'none'],
		'paddingTop', ['2', '0', '0', '0'],
		'textAlign', ['center', 'left', 'left', 'left'],
	];
	// state when item has mouse over it
	MENU_STYLES1['onmouseover'] = [
		'backgroundColor', ['transparent', '#cccccc', '#cccccc', '#cccccc'],
		'borderWidth', ['0', '1', '1', '1'],
		'borderColor', ['#cccccc', '#cccccc', '#cccccc', '#cccccc'],
		'fontWeight', ['bold', 'normal', 'normal', 'normal'],
		'color', ['#ffffff', '#53247f', '#53247f', '#53247f'],
		'paddingTop', ['2', '0', '0', '0'],
		'textAlign', ['center', 'left', 'left', 'left'],
	];
	MENU_STYLES1['onmousedown'] = [
		'backgroundColor', ['#6F6F96', '#6F6F96', '#6F6F96', '#6F6F96'],
		'borderWidth', ['0', '1', '1', '1'],
		'borderColor', ['#cccccc', '#cccccc', '#cccccc', '#cccccc'],
		'fontWeight', ['bold', 'normal', 'normal', 'normal'],
		'color', ['#53247f', '#53247f', '#53247f', '#53247f'],
		'paddingTop', ['2', '0', '0', '0'],
		'textAlign', ['center', 'left', 'left', 'left'],
	];
var MENU_POS1 = new Array();
	// item sizes for different levels of menu
	MENU_POS1['width'] = [(document.all?80:82), 127, 130, 130];
	MENU_POS1['height'] = [25, 20, 20, 20];
	// 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'] = [62, 25, 0, 0, 0];
	MENU_POS1['block_left'] = [190, 0, 127, 127, 127];
	// offsets between items of the same level
	MENU_POS1['top'] = [0, 20, 20, 20, 20];
	MENU_POS1['left'] = [(document.all?118:120), 0, 0, 0, 0];
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS1['hide_delay'] = [0, 0, 0, 0];

