$(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();	});	$('.navigate_hor td.other').click(function()	{		if ($('.navigate_hor_other').css('display') == 'none')		{			$('td.other img').attr('src', site_url+'res/public/images/up2.gif');			$('.navigate_hor_other').slideDown('normal');		}		else		{			$('td.other img').attr('src', site_url+'res/public/images/down2.gif');			$('.navigate_hor_other').slideUp('normal');		}	});	$('.input').focus(function(){$(this).css('border', '1px solid orange')});	$('.input').focus(function(){$(this).css('background-color', '#fafafa')});	$('.input').blur(function(){$(this).css('border', '1px solid silver')});	$('.input').blur(function(){$(this).css('background-color', 'white')});}