// JavaScript Document
function showTweet(){
		
		if ($("tweetContainer").style.visibility=="visible")
		{
			$("tweetContainer").style.visibility="hidden";
		}
		else
		{
			$("tweetContainer").style.visibility="visible";
		};
	}