function nuevaOpcion(text, value) {
	var option = document.createElement('option');
	option.appendChild(document.createTextNode(text));
	option.value = value;
	
	return option;
}

function anadirNav(id) {
	var span = document.getElementById(id);
	var select = document.createElement('select');
	select.onchange = function() {
		window.location = this.options[this.selectedIndex].value;
	};
	select.appendChild(nuevaOpcion("Ir a ...", "#"));
	select.appendChild(nuevaOpcion("--------------------------------------", "#"));
	select.appendChild(nuevaOpcion("Quiénes somos", "../Quienes/quienes.htm"));
	select.appendChild(nuevaOpcion("Soluciones y servicios", "../Soluciones/soluc_serv.htm"));
	select.appendChild(nuevaOpcion("Nuestros productos", "../Productos/productos.htm"));
	select.appendChild(nuevaOpcion("Recursos humanos", "../Recursos/recursos.htm"));
	select.appendChild(nuevaOpcion("Contacta con nosotros", "../Informacion/empresa.htm"));
	select.appendChild(nuevaOpcion("--------------------------------------", "#"));
	select.appendChild(nuevaOpcion("Soluciones al cliente", "../Soluciones/soluciones.htm"));
	select.appendChild(nuevaOpcion("Servicios para el cliente", "../Soluciones/servicios.htm"));
	select.appendChild(nuevaOpcion("Trabaja con nosotros", "../Recursos/trabaja.htm"));
	span.appendChild(select);
}

function anadirNavEng(id) {
	var span = document.getElementById(id);
	var select = document.createElement('select');
	select.onchange = function() {
		window.location = this.options[this.selectedIndex].value;
	};
	select.appendChild(nuevaOpcion("Go to ...", "#"));
	select.appendChild(nuevaOpcion("--------------------------------------", "#"));
	select.appendChild(nuevaOpcion("Who we are", "../Quienes/quienes.htm"));
	select.appendChild(nuevaOpcion("Services & solutions", "../Soluciones/soluc_serv.htm"));
	select.appendChild(nuevaOpcion("Products", "../Productos/productos.htm"));
	select.appendChild(nuevaOpcion("Partners & Integration", "../Partners/partners.htm"));
	select.appendChild(nuevaOpcion("Human resources", "../Recursos/recursos.htm"));
	select.appendChild(nuevaOpcion("Contact us", "../Informacion/empresa.htm"));
	select.appendChild(nuevaOpcion("--------------------------------------", "#"));
	select.appendChild(nuevaOpcion("Solutions", "../Soluciones/soluciones.htm"));
	select.appendChild(nuevaOpcion("Services", "../Soluciones/servicios.htm"));
	select.appendChild(nuevaOpcion("Work with us", "../Recursos/trabaja.htm"));
	span.appendChild(select);
}