$(document).ready(IndexInit);
function IndexInit()
{
	$('body').append('<!-- <div class="ajax" id="ajax"><img src="../res/public/images/wait.gif" /></div> -->');
	$('body').mousemove(function(e)
	{
		mx = e.pageX;
		my = e.pageY;
		$('#ajax').css('left', mx + 16);
		$('#ajax').css('top', my);
	});
	$("#ajax").ajaxStart(function()
	{
		$(this).show();
	});
	$("#ajax").ajaxError(function(event, request, settings)
	{
		$(this).hide();
		alert('Ошибка при выполнении запроса');
	});
	$("#ajax").ajaxStop(function()
	{
		$(this).hide();
	});
}
