function loadUpdate()
{
	$("#indicator").show();
	$("#update").load("/index/update #updatetext",null,function(){$("#indicator").hide();});
	setTimeout('loadUpdate()',60000);
}

$(document).ready(
	function()
	{
		loadUpdate();
	}
);


