  $(document).ready(function(){
    $("li.subscribe_item").remove();

    $("#contactform form").validate({
          rules : {
                "name": { required: true },
                "phone": { required: true, phoneUS: true },
                "how-can-we-help-you": { required: true },
                "email": { required: true, email: true },
                "recaptcha_response_field": { required: true},
                "company": { required: true }
          },
          errorPlacement: function(error, element) {
              error.insertBefore(element);
              $("span.required").hide();
          },
          messages: {
              "name": "Sorry, what is your name?",
              "phone": "What number can we reach you at? Example: 321-123-1234",
              "how-can-we-help-you": "Please let us know how we can assist.",
              "email": "What is your email address? Example: info@suite1000.com",
              "recaptcha_response_field": "Please fill in the words you see above exactly. If the words are unreadable, use the blue refresh button to try a different word pair. Or, use the audio option to hear the words.",
			  "company": "What is the name of your company?"
          }
    });
  });

var RecaptchaOptions = {
   theme : 'clean'
};
