function onClickPrecios(capa, idioma)
{
	document.getElementById('paseCompleto').style.display        = 'none';
	document.getElementById('paseNocturno').style.display        = 'none';
	document.getElementById('ticketDia').style.display           = 'none';
	document.getElementById('zapatosReina').style.display        = 'none';
	document.getElementById('zapatosReina').style.display        = 'none';	
	document.getElementById('completoIntermedio').style.display  = 'none';
	document.getElementById('completoAvanzado').style.display    = 'none';
	document.getElementById('preciosImportante').style.display   = 'none';
	document.getElementById('textoInformativo').style.display    = 'none';	

	if (idioma == 'es')
	{
		document.getElementById('completoAvanzadoEnlace').style.backgroundImage = "url('../../img/precios/CompletoAvanzado_es_v1_0_0.png')";
		document.getElementById('completoIntermedioEnlace').style.backgroundImage = "url('../../img/precios/CompletoIntermedio_es_v1_0_0.png')";
	}
	else
	{
		document.getElementById('completoAvanzadoEnlace').style.backgroundImage = "url('../../img/precios/CompletoAvanzado_en_v1_0_0.png')";
		document.getElementById('completoIntermedioEnlace').style.backgroundImage = "url('../../img/precios/CompletoIntermedio_en_v1_0_0.png')";
	}

	document.getElementById(capa).style.display  = '';
}

function onClickPreciosCompletos(capa, idioma)
{
	document.getElementById('completoIntermedio').style.display  = 'none';
	document.getElementById('completoAvanzado').style.display    = 'none';
	document.getElementById('preciosImportante').style.display   = '';
	document.getElementById(capa).style.display  = '';
	
	var avanzadoSeleccionado;
	var intermedioSeleccionado;
	if (idioma == 'es')
	{
		if (capa == "completoAvanzado")
		{
			document.getElementById('completoAvanzadoEnlace').style.backgroundImage = "url('../../img/precios/CompletoAvanzadoSeleccionado_es_v1_0_0.png')";
			document.getElementById('completoIntermedioEnlace').style.backgroundImage = "url('../../img/precios/CompletoIntermedio_es_v1_0_0.png')";
		}
		else if (capa == "completoIntermedio")
		{
			document.getElementById('completoAvanzadoEnlace').style.backgroundImage = "url('../../img/precios/CompletoAvanzado_es_v1_0_0.png')";
			document.getElementById('completoIntermedioEnlace').style.backgroundImage = "url('../../img/precios/CompletoIntermedioSeleccionado_es_v1_0_0.png')";
		}
	}
	else
	{
		if (capa == "completoAvanzado")
		{
			document.getElementById('completoAvanzadoEnlace').style.backgroundImage = "url('../../img/precios/CompletoAvanzadoSeleccionado_en_v1_0_0.png')";
			document.getElementById('completoIntermedioEnlace').style.backgroundImage = "url('../../img/precios/CompletoIntermedio_en_v1_0_0.png')";
		}
		else if (capa == "completoIntermedio")
		{
			document.getElementById('completoAvanzadoEnlace').style.backgroundImage = "url('../../img/precios/CompletoAvanzado_en_v1_0_0.png')";
			document.getElementById('completoIntermedioEnlace').style.backgroundImage = "url('../../img/precios/CompletoIntermedioSeleccionado_en_v1_0_0.png')";
		}		
	}

}
