﻿$().ready(function() {
	var url = 'http://twitter.com/status/user_timeline/csharpus.json?count=1&callback=?';
	$.getJSON(url, function(data) {
		$('#latest-tweet').html(data[0].text);
	});
});

