$(document).ready(function(){

   $("#blog_comment_form").validate({submitHandler: function(form){$(form).ajaxSubmit({success: function(){ $("#blog_comment_flash").addClass('flash').html("Your comment will be posted as soon as it is approved!"); $("#blog_comment_form").resetForm();}})}});
   $("#contact_form").validate({submitHandler: function(form){$(form).ajaxSubmit({success: function(){ $("#contact_form_flash").addClass('flash').html("Thanks for your email, we'll be in touch with you shortly!"); $("#contact_form").resetForm();}})}});

});