$(document).ready(function(){
	$("#report_error_button").click(function(){
		$("#hidden_report").fadeIn();
		return false;
	});
	$("#report_error_close").click(function(){
		$("#hidden_report").fadeOut();
		return false;
	});
	$("#error_ajax").submit(function(){
		var str = $("#error_ajax").serialize();
		$.post("/error_ajax.php", str, function(data) {
			if (data.status > 0) {
				$("#error_ajax").html(data.message);
			}
			else {
				alert(data.message);
			}
		},"json");
		return false;
	});
});
