jQuery(document).ready(function() {
	jQuery('input[name=form_submit_button]').click(function() {
		if (! jQuery('#validating_form').validate().form()) {
			jQuery('.error_text').text("Please supply all missing values").addClass('highlight_box');
			window.scroll(0,0); // scroll to top
			return false;
		}
	});	
});