$(document).ready(function() {
});


function formSuccess(response) {
	var container = $("#formContainer");

	var currHeight = container.height();
	if($.browser.msie) {
		currHeight += currHeight/4;
	}

	$("#activeMessageBox").css('height', currHeight);

	$("#formError").hide();

	container.fadeOut("slow", function() {
		$("#activeMessageBox").prepend('<div class="responseBox">'+response+'</div>').fadeIn("slow");
	});

}

function errorInForm(details) {
	$("#formError").hide().slideDown("fast");
}
