$(document).ready(function () {
	$('#shout_form').submit(function () {
		send_shout();
		return false;
	});
	get_shouts();
	setInterval('get_shouts()', 10000);
});

function send_shout() {
	$.ajax({
		type : 'POST',
		url : 'index.php',
		data : {
			mod : 'shouts',
			act : 'shout',
			use_ajax : '1',
			shout_msg : $('#shout_msg').val()
		},
		beforeSend : function () {
			$('#shout_form :input').attr('disabled', true);
		},
		success : function (data) {
			get_shouts();
			$('#shout_msg').val('');
			$('#shout_form :input').attr('disabled', false);
			$('#shout_msg').focus();
		}
	});
}

function get_shouts() {
	$.ajax({
		type : 'POST',
		url : 'index.php',
		data : {
			mod : 'shouts',
			act : 'get',
			use_ajax : '1'
		},
		beforeSend : function () {
			//$('#shoutbox').html('<div align="center" class="shoutbox-loading"><i>Loading...</i></div>');
		},
		success : function (data) {
			$('#shoutbox').html(data);
		}
	});
}