function akttPostPeep() {
	var peeps_field = jQuery('#peeps_peeps_text');
	var peeps_text = peeps_field.val();
	if (peeps_text == '') {
		return;
	}
	var peeps_msg = jQuery("#peeps_peeps_posted_msg");
	jQuery.post(
		"http://thenthang.com/index.php"
		, {
			peeps_action: "peeps_post_peeps_sidebar"
			, peeps_peeps_text: peeps_text
		}
		, function(data) {
			peeps_msg.html(data);
			akttSetReset();
		}
	);
	peeps_field.val('').focus();
	jQuery('#peeps_char_count').html('');
	jQuery("#peeps_peeps_posted_msg").show();
}
function akttSetReset() {
	setTimeout('akttReset();', 2000);
}
function akttReset() {
	jQuery('#peeps_peeps_posted_msg').hide();
}
