var HTML_REGEX = /<br\/?>|<\/[a-zA-Z]+>|&#?\w*;/;

/*
	Funciones de libreria
*/

function actualizarEtiquetas()
{
	seleccionarIdioma($("#aplicacion").data("idioma"));
}

function seleccionarIdioma(idioma)
{
	$("a.selectorIdioma").removeClass("actual");
	$("a#"+idioma).addClass("actual");
	$(".etiqueta").each(function(){
		var texto = $(this).data(idioma);
		if (texto.indexOf("<br>") != -1 || 
			texto.indexOf("</") != -1 || 
			texto.indexOf("&#") != -1 || 
			$(this).data("tipo") == "html" ||
			texto.search(HTML_REGEX) != -1)
		{
			$(this).html(texto);
		}
		else if ($(this).data("tipo")=="link") {
			$(this).attr("href", $(this).data(idioma));
		}
		else
		{
			$(this).text(texto);
		}
		
		$("#aplicacion").data("idioma", idioma);
	});
}

