function dentro(element){
					document.getElementById(element).src="imagenes/menu/"+element+"2.jpg";
					//alert(element + " dentro");
			}
			
function fuera(element){
					document.getElementById(element).src="imagenes/menu/"+element+".jpg";
					//alert("fuera");
			}
			
function quitaClick(zona){
	if( document.getElementById(zona).value!="" ){
		document.getElementById(document.getElementById(zona).value).className="noclick";
	}
}

function areasDeNegocio(area, texto, idioma){
	quitaClick('area');
	document.getElementById('area').value = area;
	document.getElementById(area).className="click";
	
	valores = "area="+area;
	valores += "&p=dep";
	valores += "&func=dep";
	valores += "&l="+idioma;
	envio_ajax(valores, "index.php", "departa", 0);
	
	document.getElementById('plantas').innerHTML = "<div id='campo'>"+texto+"</div><div id='campo_info'></div>";
	document.getElementById('envio').innerHTML = "";
	
	document.getElementById('dep').value = "";
	document.getElementById('planta').value = "";
}

function depart(departamento, idioma){
	quitaClick('dep');
	document.getElementById('dep').value = departamento;
	document.getElementById(departamento).className="click";
	area = document.getElementById('area').value;
	
	/*
	valores = "area="+area+"&departamento="+departamento+"&l="+idioma;
	envio_ajax(valores, "pages/curri/plantas.php", "plantas", 0);
	*/
	
	valores = "area="+area;
	valores += "&departamento="+departamento;
	valores += "&p=plantas";
	valores += "&func=plantas";
	valores += "&l="+idioma;
	envio_ajax(valores, "index.php", "plantas", 0);
	
	
	document.getElementById('envio').innerHTML = "";
	document.getElementById('planta').value = "";
}

function plantas(planta, idioma){
	quitaClick('planta');
	document.getElementById('planta').value = planta;
	document.getElementById(planta).className="click";
	/*
	valores = "planta="+planta;
	envio_ajax(planta, "pages/curri/form_curri.php", "envio", 0);
	*/
	valores = "planta="+planta;
	valores += "&p=form_curri";
	valores += "&func=form_curri";
	valores += "&l="+idioma;
	envio_ajax(valores, "index.php", "envio", 0);
}

function envio(){
	area = document.getElementById('area').value;
	dep = document.getElementById('dep').value;
	planta = document.getElementById('planta').value;
	nombre = document.getElementById('nombre').value;
	email = document.getElementById('email').value;
	presentacio = document.getElementById('mensaje').value;
	archivo = document.getElementById('archivo1').value;
//	alert("area="+area+", dep="+dep+", planta="+planta);
	//envio_ajax(valores, "http://www.egmartinez.com/gkm.es/enviarmail.php", "explicacion", 0);
	document.formulario.submit();
}

