
	$(document).ready(function(){
		var framedForm = $(".framed .form-column");
		if (framedForm.size()) {
			$(".framed .form-column").height(
				$(window).height() - 
					$(".framed .form-column").position().top - 
					$(".framed .submit-row").height() -
					10
			);
		}
	});