$(document).ready(function() {
	get_shouts();
	get_status();
	get_ts3();
	setTimeout(function(){
		//get_shouts();
		get_status();
		get_ts3();
		setTimeout(arguments.callee, 5000);
	}, 5000);
});

function shout() {
	// nothign yet. maybe use to address shouts not updating automatically becasue of conflict with all_shouts
}

function get_all_shouts() {
	$('#shoutbox').load('./scripts/get_all_shouts.php');
	$('#show_shouts_toggle').html('<button type="input" onclick="get_shouts();">Show Recent</button>');
}

function get_shouts() {
	$('#shoutbox').load('./scripts/get_shouts.php');
	$('#show_shouts_toggle').html('<button type="input" onclick="get_all_shouts();">Show All</button>');
}

function get_status() {
	$('#server_info').load('./scripts/get_status.php');
}

function get_ts3() {
	$('#ts3_info').load('./scripts/get_ts3.php');
}
