$(document).ready(function() {
	// find all the input elements with title attributes
	$('input[title!=""]').hint();
});


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

	var currHeight = container.height();

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

}
