//Comportamiento
var autoHide_activate = true;
var autoHide_seconds = 0.05;

// Preferencias
function menu_preferencias ()
{
	this.m_vertical  = true;
	this.m_width  = 110;
	this.m_height  = 34;
	this.sm_width  = 200;
	this.sm_height  = 33;
	this.default_icon_height = 7;
	this.default_icon_width = 7;
	this.h_offset  = 6;
	this.v_offset  = 0;
	this.vertical_adjust = 3;
	this.horizontal_adjust = -6;
	this.zIndx = 10;
	this.default_cursor ='pointer';
	this.link_cursor = 'pointer';
	this.sm_direction = 'right';
	this.positioning = 'relative';
	this.internal_browse_active = true;
	this.base_url_active = true;
	this.frameMenu = 'noFrames';
	this.frameSubMenu = 'noFrames';
	// Estilo de las capas que contiene submenús
	this.l_m_background  = 'transparent';
	this.l_m_border = '0px outset #919dad';
	this.l_m_border_top = this.l_m_border;
	this.l_m_border_right = this.l_m_border;
	this.l_m_border_bottom = this.l_m_border;
	this.l_m_border_left = this.l_m_border;
	this.l_sm_background  = '#cbced5';
	this.l_sm_border = '2px outset #919dad';
	this.l_sm_border_top = '2px solid #919dad';
	this.l_sm_border_right = '2px solid #919dad';
	this.l_sm_border_bottom = '2px solid #919dad';
	this.l_sm_border_left = '6px solid #919dad';
	// Estilos de primer nivel para los elementos de menú
	this.m_align = 'left';
	this.m_padding = (0,4,0,0);
	this.m_background  = 'url(imagenes/cuadro_menu_des.gif)';
	this.m_bottom_decor = '';
	this.m_txt_font_family = 'Arial, Helvetica, sans-serif';
	this.m_txt_font_size = '12px';
	this.m_txt_color  = '#FFFFFF';
	this.m_txt_weight = 700;
	this.m_txt_decoration = 'none';
	// Movimiento del ratón sobre los estilos de primer nivel para los elementos de menú
	this.m_a_background  = 'url(imagenes/cuadro_menu_act.gif)';
	this.m_txt_a_color  = this.m_txt_color;
	this.m_txt_a_link_weight = 700;
	this.m_txt_a_link_decoration = 'none';	
	// Estilos de los elementos del submenú
	this.sm_align = null;
	this.sm_padding = 0;
	this.sm_background  = '#cbced5';
	this.sm_bottom_decor = '1px inset #ffffff';
	this.txt_font_family = 'Arial, Helvetica, sans-serif';
	this.txt_font_size = '11px';
	this.txt_color  = 'white';
	this.txt_weight = 700;
	this.txt_decoration = 'none';
	this.sm_arrow = 'url(imagenes/fecha_menu_des.gif)';
	this.sm_a_arrow = 'url(imagenes/fecha_menu_act.gif)'
	// Movimiento del ratón sobre los estilos de los elementos del submenú
	this.sm_a_background  = '#919dad';
	this.txt_a_font_family = this.txt_font_family;
	this.txt_a_font_size = this.txt_font_size;
	this.txt_a_color  = 'white';
	this.txt_a_link_weight = 700;
	this.txt_a_link_decoration = 'none';
	// Estilos de elementos inactivos submenú
	this.txt_i_font_family = this.txt_font_family;
	this.txt_i_font_size = this.txt_font_size;
	this.txt_i_color  = 'white';
}
// Fin Preferencias