$(function(){	
	//Настройки аякса
	$.ajaxSetup({
		type: 'POST',
		timeout: 50000,
		dataType:'json',
		error: function(xhr)
		{
			$('#xDebug').html('Ajax Error: '+xhr.status+' '+xhr.statusText+' '+xhr.responseText);
			$('#xDebug').show();
		}
	})
	
});