var t;
var hd;

$(document).ready(function() {
// stripped out all of the other code... below is the code for the contact form.
	$("#contact-form").validate({
		submitHandler: function(form) {	
			$('.form-submit-btn').attr('disabled','disabled');
			$.post('/php/send_contact_form.php', {c_name: $("#c_name").val(), c_email: $("#c_email").val(), c_message: $("#c_message").val()}, function(data) {
				$('.confirmation').fadeIn('fast');
				$('input').val('');
				$('textarea').val('');
			});
		}
	});
	
});
