$(document).ready(function() {
	//máscaras
	$(".data").mask("99/99/9999");
   	$(".telefone").mask("(99) 9999-9999");
   	$(".cpf").mask("999.999.999-99");
   	$(".cnpj").mask("999.999.999/9999-99");
	
	//inicia a galeria
	$('#gallery a').lightBox();
	
	//Close button:
	$(".close").click(
		function () {
			$(this).parent().fadeTo(400, 0, function () { // Links with the class "close" will close parent
				$(this).slideUp(400);
			});
			return false;
		}
	);
	
	//filme
	$('.texto-noticia EMBED').attr("width", "500");
	$('.texto-noticia EMBED').attr("height", "300");
	$('.texto-noticia OBJECT').attr("width", "500");
	$('.texto-noticia OBJECT').attr("height", "300");
});
