//<![CDATA[
	// posts today by viral
	document.write('<div id="postAJAX" style="display:none;"></div>');
	if(location.href.match(/\/index[\/]?$/gi)){
		$.post(main_url+"stats/top_posters/",{},function(data){
			document.getElementById("postAJAX").innerHTML = data;
			var posts = $("#postAJAX #wrap #main table:last tbody tr:last").html().split("Total posts today: ")[1].split("</td>")[0];
			var stuff = $("#main #stats.category table.forums tbody tr td.c_mark img[alt=Stats]").parent().next();
			stuff.html(stuff.html()+("<br />There have been a total of <strong>"+posts+"</strong> posts made today!"));
		});
	}
//]]>