
var MENU_POS1 = {
	// item sizes for different levels of menu
	'height': [24, 20, 20],
	'width': [80, 80, 80],
	// 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
	'block_top': [75, 23, 5],
	'block_left': [80, 0, 80],
	// offsets between items of the same level. 1, 2 ,3
	'top': [0, 21, 21],
	'left': [80, 0, 0],
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	'hide_delay': [200, 200, 200]
};


var MENU_STYLES1 = {
	// default item state when it is visible but doesn't have mouse over
	'onmouseout': [
		'color', ['#ffffff', '#000000', '#000000'],
		'background', ['#000000', '#ffcc33', '#ffcc33'],
		'textDecoration', ['none', 'none', 'none'],
		'fontWeight', ['normal', 'normal', 'normal'],
	],
	// state when item has mouse over it
	'onmouseover': [
		'color', ['#000000', '#000000', '#000000'],
		'background', ['#ffcc33', '#5AA7E5', '#5AA7E5'],
		'textDecoration', ['none', 'none', 'none'],
		'fontWeight', ['normal', 'normal', 'normal'],
	],
	// state when mouse button has been pressed on the item
	'onmousedown': [
		'color', ['#FFFFFF', '#000000', '#000000'],
		'background', ['#5AA7E5', '#5AA7E5', '#5AA7E5'],
		'textDecoration', ['none', 'none', 'none'],
		'fontWeight', ['normal', 'normal', 'normal'],
	]
};
