function loadLatest() {
	$("#latest .items").load("../inc/latest.php");
}
function loadTop() {
	$("#top #users").load("../inc/top.php");
}
function loadStats() {
	$("#statistics").load("../inc/stats.php");
}
function updateInfo() {
	loadLatest();
	loadTop();
	loadStats();
}

$(document).ready(function() {
	twttr.anywhere(function(T) {
		T("#tweetbox").tweetBox({
			height: 75,
			width: 690,
			defaultContent: "#ttcu",
			label: "<span style='color: #ffffff;text-shadow: 1px 1px 3px rgba(0,0,0,0.5);'>What's happening on the TTC?</span>",
			onTweet: updateInfo
		});
	});

	$("#post").show();
	loadLatest();
	setInterval(loadLatest, 60000);
	loadTop();
	setInterval(loadTop, 60000);
	loadStats();
	setInterval(loadStats, 60000);
});