function contato_ajax(){
new Ajax.Updater('contact_form_content','processa_formulario.php', {asynchronous:true, parameters:'contato_nome='+
document.getElementById ('contato_nome').value+
'&contato_email='+document.getElementById ('contato_email').value+
'&contato_telefone='+document.getElementById ('contato_telefone').value+
'&contato_empresa='+document.getElementById ('contato_empresa').value+
'&contato_mensagem='+document.getElementById ('contato_mensagem').value}); return false;
}

Ajax.Responders.register({
    onCreate: function(){ Element.show('spinner')}, 
    onComplete: function(){Element.hide('spinner')}
});