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


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

	var currHeight = container.height();

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

}

function errorInForm(details) {
	$("#formError").hide().text("Twoja wiadomość nie została wysłana.").slideDown("fast");
}