function showTweet(twitterName){

	// TWEET STYLE
	var tweetStyle  =  "<style>\
	#lastTweet:hover{background-color:#222;border:2px solid #fff;filter: alpha(opacity=70);-moz-opacity: 0.7;opacity: 0.7;}\
	#lastTweet span{display:block;font-size:11px;padding-top:3px;}\
	#lastTweet{\
	width:250px;\
	_width:300px;\
	>width:300px;\
	_text-align:left;\
	>text-align:left;\
	z-index:999;\
	background-image:url('http://3-j.jp/images/logo_twitter_withbird_86.png');\
	background-position:top right;\
	background-repeat:no-repeat;\
	border:2px solid #aaa;\
	color:#fff;\
	border-radius:5px;\
	-webkit-border-radius:5px;\
	-moz-border-radius:5px;\
	box-shadow:0px 0px 8px #000;\
	-webkit-box-shadow:0px 0px 8px #000;\
	-moz-box-shadow:0px 0px 8px #000;\
	text-decoration:none;\
	font-family:helvetica,arial;\
	font-size:12px;\
	padding:8px;\
	padding-right:86px;\
	min-height:44px;\
	margin: 0 auto;\
	display: block;\
	}\
	#twitterArea{\
	_text-align:center;\
	>text-align:center;\
	}\
	</style>";

	twitterCallback2 = function(tweet) {		// FUNCTION CALLED WHEN TWITTER SCRIPT IS PARSED
		var updateTweet = tweet[0].text			// Tweet text
		var tweetAppend = '<div id="twitterAreaShadow"><a target="_blank" href="http://www.twitter.com/'+twitterName+'" id="lastTweet"><strong>'+twitterName+'のつぶやき:</strong><span>'+updateTweet+'</span></a></div>'
		$("td#twitterArea").append(tweetAppend)
	 };
	createJSONtweet = function(twitterName){		// PARSE twitter SCRIPT GET CALLBACK FUNCTION AND JSON 	
		var getTweet = document.createElement("script");
		getTweet.src="http://twitter.com/statuses/user_timeline/"+twitterName+".json?callback=twitterCallback2&count=1";
		document.getElementById('twitter_script').appendChild(getTweet);
	};

	$("head").append(tweetStyle);			// APPLY TWEET TO THE BODY
	$("td#twitterArea").append('<div id="twitter_script"></div>');
	createJSONtweet(twitterName);
}


