jQuery(document).ready(function($) {
	$.post("/cms/content/dailyreport.php", { format: "json" },
	function(data){
		$("#CMSHeaderInfos").html(data.message);
	}, "json");

	$("#CMSHeaderInfos").click( function() {
		$("#CMSHeaderInfos").html("<div style='text-align: center'><img src='/_img/loading_animation.gif'></div>");
		$.post("/cms/content/dailyreport.php", { format: "json" },
		function(data){
			$("#CMSHeaderInfos").html(data.message);
		}, "json");
	});

});

