$(document).ready(function() {
	$("#myTBClose").click(function() {
		self.parent.tb_remove();
		return false;
	});
});


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().slideDown("fast");
}
