/***** Inserido por Cristiano *************/

<!-- ########## acessibilidade em texto ########## -->

var textoNormal = 12;
var tamanhoMaximo = 18;
var tamanhoMinimo = 10;

function mudaFonte(tipo,elemento){
	if (tipo=="mais") {
		if(textoNormal < tamanhoMaximo) textoNormal += 2;
		<!-- createCookie('texto',textoNormal,365); -->
	} else {
		if(textoNormal > tamanhoMinimo) textoNormal -= 2;
		<!-- createCookie('texto',textoNormal,365); -->
	}
	document.getElementById('texto').style.fontSize = textoNormal +'px';

}

$(document).ready(function() {
						   
	$("a[class='decrease']").click( function() {
		mudaFonte('menos');
		return false;
	});
	
	$("a[class='increase']").click( function() {
		mudaFonte('mais');
		return false;
	});	
	
	$("a[class='email']").click( function() {
		return false;
	});	

	$("a[class='print']").click( function() {
		return false;
	});	
	
	/*
	$("a[class='print']").click( function() {
			 
			//aux = $("body").html();
			//texto = $("#texto").html();
			//$("body").html(texto);
			//janela = window.open("janela","janela","width=100,height=100");
			//janela.innerHtml = texto 
			
			//print(janela);
			//$("body").html(aux);
			
			return false;
	});	
	*/


///*** begin:form ***///	

	$("#Telefone").mask("(99) 9999 9999");

	$("#formulario").validate({

		rules: { // set the rules for the field names
			'Nome': {
				required: true
			},
			'Email': {
				required: true,
				email: true
			},
			'Telefone': {
				required: true
			},
			'Mensagem': {
				required: true
			}
		},
		messages: { // set messages to appear inline
			'Nome': "Informe seu Nome completo",
			'Email': "Endereço de E-mail incorreto",
			'Telefone': "Informe seu Telefone",
			'Mensagem': "Digite sua Mensagem"
		}
		
	});
	
///*** end:form ***///	

});

<!-- ########## fim acessibilidade em texto ########## -->