function popuplateTwitter() {
	tweets = arguments[0];				
	populateText(tweets);
	
}

function populateText($tweet) {
	$current = $tweet[0];
	statusHTML = [];
	statusHTML.push('<li><a href="http://twitter.com/CharityBuilder/statuses/'+$current.id_str+'" title="" target="_blank">' + $current.text +'</a></li>');
	document.getElementById('twitter_update_list').innerHTML = statusHTML.join(''); 
	
	//$('#twitter_update_list').html('<li>' + $current.text +'</li>');
}


$(function() {
	if( !$('#twitter_update_list').length )
		return;
		
	var loadScript = function( url ) {
		var script = document.createElement('script');
		script.src = url;
		script.type = 'text/javascript';
		document.getElementsByTagName('head')[0].appendChild(script);
	}
	loadScript('http://twitter.com/statuses/user_timeline/CharityBuilder.json?callback=popuplateTwitter&amp;count=1');
});
