$(document).ready(function () {
	$("#search").submit(
	function () {
		$.ajax({
			cache: false,
			contentType: 'application/x-www-form-urlencoded',
			data: $(":text").serializeArray(),
			dataType: 'html',
			success: function (data) {
				$('#response').html(data);
			},
			timeout: 5000,
			type: "POST",
			url: "/includes/steamid.ru.php"
		});
	});
	$("#loading").ajaxStart(function () {
		$(this).show();
		$("#response").hide();
	});
	$("#loading").ajaxStop(function () {
		$(this).hide();
	});
	$("#response").ajaxComplete(function () {
		$(this).show();
	});

});

