function getFromTwitter(name)
{
	//get the data from json
	var url = "http://twitter.com/status/user_timeline/ZEBRATVNL.json?count=1&callback=?";
	$.getJSON(url,
		function(data)
		{
			//received json callback from twitter
			//so pass the data to the callback function in Flash
			$("#zebra_flash")[0].updateTwitter(data[0].text);
		}
	);
}
