var tabAtual = 1

       mudarTab = function(numeroTab) {
           	$("#tab_"+tabAtual).slideToggle('slow');
			// $("#tab_"+tabAtual).animate({
			// 			    width: 'toggle',
			// 			    height: 'toggle'
			// 			  }, {
			// 			    duration: 1000,
			// 			    specialEasing: {
			// 			      width: 'linear',
			// 			      height: 'easeOutBounce'
			// 			    },
			// 			    complete: function() {
			// 			      $(this).after('<div>Animation complete.</div>');
			// 			    }
			// 			  });
            $("#tab_"+numeroTab).slideToggle('slow');
			// $("#tab_"+numeroTab).animate({
			// 			    width: 'toggle',
			// 			    height: 'toggle'
			// 			  }, {
			// 			    duration: 5000,
			// 			    specialEasing: {
			// 			      width: 'linear',
			// 			      height: 'easeOutBounce'
			// 			    },
			// 			    complete: function() {
			// 			      $(this).after('<div>Animation complete.</div>');
			// 			    }
			// 			  });
            tabAtual = numeroTab
       }

var idiomasAtual = 1

      idiomaTab = function(idiomaTab) {
          $("#idioma_"+idiomasAtual).slideToggle('slow');
          $("#idioma_"+idiomaTab).slideToggle('slow');
          idiomasAtual = idiomaTab
      }
