                $(document).ready(function(){
                $("#contactLink").click(function(){
                    if ($("#contactForm").is(":hidden")){
                        $("#contactForm").slideDown("slow");
                    }
                    else{
                        $("#contactForm").slideUp("slow");
                           		
	  
	   }
	   
                });
                
            });
            
            function closeForm(){
                $("#messageSent").show("slow");
                setTimeout('$("#messageSent").hide();$("#contactForm").slideUp("slow")', 2000);
           }
     
$(function() {   
  $(".button").click(function() {   
    var name = $("input#name").val();		
	  var email = $("input#email").val();		
	  var message = $("textarea#message").val();
	  var email2 = $("input#email2").val();
	  var phone = $("input#phone").val();
	  var oper = $("input#oper").val();
	  var dataString = 'name='+ name + '&email=' + email + '&message=' + message + '&email2=' + email2 + '&phone=' + phone + '&oper=' + oper;
	 $.ajax({   
  type: "POST",   
  url: "http://www.amletobarboni.com.br/458375834tehsdghggj/process.php",   
  data: dataString,   
  success: function() {
       
      }
     });
 
  });   
});   

