$(document).ready(function(){
	
	//funções para aumentar e diminuir textos
	$('.up').click(
		function(){
			var tamanho_fonte = $('.texto-aumenta').css('font-size').replace("px", "");
			$('.texto-aumenta').css('font-size', (parseFloat(tamanho_fonte) + 1) + 'px');
			
			var tamanho_fonte2 = $('.olho').css('font-size').replace("px", "");
			$('.olho').css('font-size', (parseFloat(tamanho_fonte2) + 1) + 'px');
		}
	);
	$('.down').click(
		function(){
			var tamanho_fonte = $('.texto-aumenta').css('font-size').replace("px", "");
			$('.texto-aumenta').css('font-size', (parseFloat(tamanho_fonte) - 1) + 'px');
			
			var tamanho_fonte2 = $('.olho').css('font-size').replace("px", "");
			$('.olho').css('font-size', (parseFloat(tamanho_fonte2) - 1) + 'px');
		}
	);
	//funções para aumentar e diminuir textos
	
	//configuração do popup
	$.superbox.settings = {
		boxId: "superbox", // Id attribute of the "superbox" element
		boxClasses: "", // Class of the "superbox" element
		overlayOpacity: .9, // Background opaqueness
		boxWidth: "700", // Default width of the box
		boxHeight: "600", // Default height of the box
		loadTxt: "<img src='img/preload.gif' />", // Loading text
		closeTxt: "<img src='img/close.png' />" // "Close" button text
	};
	$.superbox();
	//configuração do popup
	
	$(".data").mask("99/99/9999");
   	$(".telefone").mask("(99) 9999-9999");
   	$(".cpf").mask("999.999.999-99");
   	$(".cnpj").mask("99.999.999/9999-99");
	$(".cep").mask("99999-999");
});

