jQuery(document).ready(function(){jQuery('form#f_contact').validate({rules:{name:{required:true},title:{required:true},company:{required:true},email:{required:true,email:true},comments:{required:true}}});var ajaxFormOptions={url:'/ajax/contact/',type:'POST',beforeSubmit:function(){return jQuery('form#f_contact').validate().form();},success:function(json){if(json.success){jQuery('div#contact-container').css('height',Math.max(jQuery('div#contact-container').height(),jQuery('div#contact-thankyou-container').height())+'px');jQuery('div#contact-form-container').fadeOut('slow',function(){jQuery('div#contact-thankyou-container').fadeIn();});}},dataType:'json'};jQuery('a.btn-submit').bind('click',function(){jQuery('#f_contact').ajaxSubmit(ajaxFormOptions);return false;});});