/* --- geometry and timing of the menu --- */
var menu_posicion = new Array();
	// item sizes for different levels of menu
	menu_posicion['height'] = [20, 20, 20];
	menu_posicion['width'] = [108, 133, 120];
	// 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'] = [140, 19, 0];
	menu_posicion['block_left'] = [203, 0, 190];
	// offsets between items of the same level
	menu_posicion['top'] = [0, 21, 21];
	menu_posicion['left'] = [107, 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', ['#FFFFFF', '#000000', '#000000'], 
		'background', ['#AD0505', '#97CF30', '#97CF30'],
		'fontWeight', ['normal', 'normal', 'normal'],
		'textDecoration', ['none', 'none', 'none'],
	];
	// state when item has mouse over it
	menu_estilos['onmouseover'] = [
		'color', ['#000000', '#000000', '#000000'], 
		'background', ['#C4E67A', '#FFFFFF', '#C4E67A'],
		'fontWeight', ['normal', 'bold', 'bold'],
		'textDecoration', ['none', 'none', 'none'],
	];
	// state when mouse button has been pressed on the item
	menu_estilos['onmousedown'] = [
		'color', ['#000000', '#000000', '#000000'], 
		'background', ['#C4E67A', '#C4E67A', '#C4E67A'],
		'fontWeight', ['normal', 'bold', 'bold'],
		'textDecoration', ['none', 'none', 'none'],
	];
	

