function acctPostTweet() {
	var tweet_field = jQuery('#acct_tweet_text');
	var tweet_text = tweet_field.val();
	if (tweet_text == '') {
		return;
	}
	var tweet_msg = jQuery("#acct_tweet_posted_msg");
	jQuery.post(
		"http://www.sc-wedding-videographer-blog.com/index.php"
		, {
			ak_action: "acct_post_tweet_sidebar"
			, acct_tweet_text: tweet_text
		}
		, function(data) {
			tweet_msg.html(data);
			acctSetReset();
		}
	);
	tweet_field.val('').focus();
	jQuery('#acct_char_count').html('');
	jQuery("#acct_tweet_posted_msg").show();
}
function acctSetReset() {
	setTimeout('acctReset();', 2000);
}
function acctReset() {
	jQuery('#acct_tweet_posted_msg').hide();
}
