/*
function cambiarIdioma(idioma)
{
	$.ajax({
		type: "POST",
		url: "/idioma.php",
		data: "lang=" + idioma,
		success: function(msg){
			alert( "Data Saved: " + msg );
		},
		error: function(msg){
			alert( "Fucking error: " + msg );
		}
	});
	window.location.reload();
}
*/
function cambiarIdioma(idioma){
	$.ajax({
		type: "POST",
		url: "/lib/ajax/idioma.php",
		data: "lang=" + idioma,
		success: function(msg){
			window.location.reload();
		},
		error: function(msg){
			alert( "Error cambiando idioma: " + msg );
		}
	});
}

