// Twitter API.

function getTwitter(count) { 
	$.getJSON("/includes/controllers/twitter.php?count="+count, function(jsonResponse) {

		var tweetItems = '';

		$.each(jsonResponse.tweets, function(i,tweet) {
			tweetItems += '<li style="display: none;">@RunstrongLA: ' + tweet.message + '</li>';
		});

		$('#twitterFeed ul').html(tweetItems);
		
		// fade in the first tweet     
		$("#twitterFeed li").first().fadeIn();  	
		
	});
}

$(document).ready(function(){
	// GET TWITTER INFO.
	getTwitter(1);
	
 	// EXTERNAL LINKS.
	externalLinks(true);
});
