/**
 * Twitter tracker! Twitter tracker! Twitter tracker [for MySmartCampus]!
 * @author rayho
 */
$().ready(function() {
	setTimeout(function() {
		$.getJSON("twitter.php", null, function(data, textStatus) {
			// Hide loading message
			var tweets = $("#twitter > ul").hide().empty();
			
			// Is there at least one person who tweeted @MySmartCampus?
			if (data.results.length > 0) {
				// At least one person has tweeted
				$.each(data.results, function() {
					var twitterLink = '<a href="http://www.twitter.com/' + this.from_user + '">';
					tweets.append('<li>' + twitterLink + '<img src="' + this.profile_image_url +'" /></a><span>' + twitterLink + this.from_user + '</a>&mdash;' + this.text + '</span></li>');
				});
			} else {
				// No one tweeted
				tweets.append('<li>Be the first to tweet <a href="http://www.twitter.com/mysmartcampus">@MySmartCampus</a>!</li>')
			}
			tweets.show("normal");
		});
	}, 1000);
});
