$(document).ready(HeaderInit);
function HeaderInit()
{
	$('body').append('<div class="ajax" id="ajax"><img src="/res/public/images/wait.gif" /></div>');
	$('body').mousemove(function(e)
	{
		$('#ajax').css('left', e.pageX + 16);
		$('#ajax').css('top', e.pageY);
	});
	$("#ajax").ajaxStart(function()
	{
		$(this).show();
	});
	$("#ajax").ajaxError(function(event, request, settings)
	{
		$(this).hide();
	});
	$("#ajax").ajaxStop(function()
	{
		$(this).hide();
	});
}
