/* --- geometry and timing of the menu --- */
var menu_posicion = new Array();
	// item sizes for different levels of menu
	menu_posicion['height'] = [18, 18, 18];
	menu_posicion['width'] = [136, 220, 136];
	// 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_posicion['block_top'] = [28, 28, 0];
	menu_posicion['block_left'] = [201, 0, 96];
	// offsets between items of the same level
	menu_posicion['top'] = [0, 26, 23];
	menu_posicion['left'] = [95, 0, 0];
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	menu_posicion['hide_delay'] = [200, 1000, 800];
	
/* --- 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_estilos = new Array();
	// default item state when it is visible but doesn't have mouse over
	menu_estilos['onmouseout'] = [
		'color', ['#030553', '#030553', '#030553'], 
		'background', ['#7FD7C7', '#C8EEE7', '#C8EEE7'],
		'fontWeight', ['normal', 'normal', 'normal'],
		'textDecoration', ['none', 'none', 'none'],
	];
	// state when item has mouse over it
	menu_estilos['onmouseover'] = [
		'color', ['#030553', '#030553', '#030553'], 
		'background', ['#6699cc', '#6699cc', '#6699cc'],
		'fontWeight', ['normal', 'bold', 'bold'],
		'textDecoration', ['none', 'none', 'none'],
	];
	// state when mouse button has been pressed on the item
	menu_estilos['onmousedown'] = [
		'color', ['#030553', '#030553', '#030553'], 
		'background', ['#99ccff', '#99ccff', '#99ccff'],
		'fontWeight', ['normal', 'bold', 'bold'],
		'textDecoration', ['none', 'none', 'none'],
	];
	

