﻿/*Contato*/
function abreForm() {
    $("#baseFormulario").css("height","657px");
    $("#btnenviaContato").fadeOut("fast", function() {
        $('#formContato').animate({
            top: "0px"
        }, 500, function() {
            // Animation complete.
        });
        $.scrollTo('#baseFormulario', 800);
    });
}

function fechaForm() {
   $('#formContato').animate({
        top: "657px"
    }, 500, function() {
        // Animation complete.
        $("#btnenviaContato").fadeIn("fast", function() {});
        $("#baseFormulario").css("height","1px");
    });
    $.scrollTo("#contato", 800);
}
