function Servicios() {}

Servicios.etiquetas = new Array();
Servicios.etiquetas['consultoria'] = new Array( 'prevencion', 'fauna', 'vegetacion' );
Servicios.etiquetas['formacion'] = new Array( 'servicios', 'cursos', 'participacion' );
Servicios.etiquetas['proyectos'] = new Array( 'redaccion', 'lineas', 'enlacesDestacados' );
Servicios.etiquetas['distribucion'] = new Array( 'listaDistribucion','mantas','redes','hidromantas','mantasRiego','geoceldas','muros','herbazales','biorrollos','unidades','gaviones','gavionesMalla','mantasFlotantes','islasFlotantes','vallas' );

Servicios.activar = function( nombre ) {
	var i = 0;
	for ( i = 0; i < Servicios.etiquetas[nombre].length; i++ ) {
		if ( i == activa['botonMultiple_' + nombre] || i == activa[nombre] ) {
			var volver = document.getElementById('volver');
			if ( volver ) {
				if ( i == 0 ) 
					volver.style.height = '0px';
				else
					volver.style.height = '26px';
			}
			document.getElementById( 'capa_' + Servicios.etiquetas[nombre][i] ).style.height = 
				document.getElementById( 'cuerpo_' + Servicios.etiquetas[nombre][i] ).offsetHeight  + 'px';
		}
		else {
			document.getElementById( 'capa_' + Servicios.etiquetas[nombre][i] ).style.minHeight = '0px';
			document.getElementById( 'capa_' + Servicios.etiquetas[nombre][i] ).style.height = '0px';
		}
	}
}
