function getLatestTweet(strID) {
	$.get('/_ajax/latestTweet.cfm',{ 'strID' : strID },showTweet,'json');
}

function showTweet(data) {
	$('#latestTweet').html(data[1].TWEET);
	$('#tweetedWhen').html(data[1].DATE);
}