function Contact() {
  var url = 'ajax/contact.php';
  new Ajax.Request(
  	url, {
  		method: 'post',
  		parameters: Form.serialize('Contact'),
  		onSuccess: function(transport) {
    		var notice = $('notice');
    		if (transport.responseText == 0) {
      			notice.update('<font color="#ff0000">Form Error(s)</font>');
      			Effect.Appear('notice');
    		}
    		if (transport.responseText == 1) {
      			Effect.Fade('Contact');
      			notice.update('Thank you for emailing us, we will get back to you shortly.');
      			Effect.Appear('notice');
    		}
    		if (transport.responseText == 2) {
      			notice.update('<font color="#ff0000">Human Test Failed</font>');
      			Effect.Appear('notice');
      			alert('Human Test Failed');
				Recaptcha.reload();
    		}
    	}
  	}
  );
}
