/* Blog comments */
function submitBlogComment() {
	$.post("/site/util/submit_blog_comment.php", $("#blog-comment").serialize(), function(success) { window.location = window.location; });
};

/* Contact form */
function submitContactForm() {
	$.post("/site/util/submit_contact_form.php", $("#contact-form").serialize(), function(success) { window.location = window.location; });
};

/* Become a site/member form */
function submitBecomeMemberForm() {
	$.post("/site/util/submit_become_member_form.php", $("#become-member-form").serialize(), function(success) { window.location = window.location; });
};

/* Become a volunteer form */
function submitVolunteerForm() {
	$.post("/site/util/submit_volunteer_form.php", $("#volunteer-form").serialize(), function(success) { window.location = window.location; });
};
