
// AJAX DIV CONTENT SWAP //

function startLoading() {
	Element.show('tweet-container');
//	Element.hide('tweet-container');
}

function finishLoading() {
	 Element.show('tweet-container');
//	 setTimeout("Effect.toggle('tweet-internal-loading');", 1000);
}

function loadContent(id) {
	 startLoading();
	 new Ajax.Updater('tweet-container', 'superfeed.php', {method: 'post', postBody:'content='+ id +''});
	 finishLoading();
}
