$(document).ready(function() {  
            $("#response-status").ajaxStart(function () {				
            }).ajaxStop(function () {
				$(this).hide('slow');
				$("#response-content").show('fast');
				$("#response-footer").show('slow');			   
				$('form').clearForm();			   	
			
			}).ajaxError(function () {
				$(this).hide('slow');				
				$("#response-content").show('fast');
				$("#response-content").html("<p><strong>Erro no formul&aacute;rio. Sua mensagem n&atilde;o foi enviada. Message: Server communication.</strong></p>");				
				$("#response-footer").show('slow');			   		   
            });					
			$("#response-footer .botao").click(tb_remove);
			$("#response-footer .botao").click(function(){
				$("#response-footer").hide('fast');
				$("#response-content").html("").hide('fast');						
			})	
			
			$(" .load_map").click(function (){
				mapa.show();						   
			});
			
  
});  