function maracctPostTweet() {
	var tweet_field = jQuery('#maracct_tweet_text');
	var tweet_text = tweet_field.val();
	if (tweet_text == '') {
		return;
	}
	var tweet_msg = jQuery("#maracct_tweet_posted_msg");
	jQuery.post(
		"http://www.sc-wedding-videographer-blog.com/index.php"
		, {
			ak_action: "maracct_post_tweet_sidebar"
			, maracct_tweet_text: tweet_text
		}
		, function(data) {
			tweet_msg.html(data);
			maracctSetReset();
		}
	);
	tweet_field.val('').focus();
	jQuery('#maracct_char_count').html('');
	jQuery("#maracct_tweet_posted_msg").show();
}
function maracctSetReset() {
	setTimeout('maracctReset();', 2000);
}
function maracctReset() {
	jQuery('#maracct_tweet_posted_msg').hide();
}
