$(function() {

    $.getJSON(
        'http://twitter.com/statuses/user_timeline/AMAAtlanta.json?count=3&callback=?',
        function(data) {
            var html = '';

            for (var i=0, count=data.length; i < count; i++) {
                var tweet = data[i].text;

                // Convert urls to links.
                tweet = tweet.replace( /(https?:\/\/.*)\b/, '<a href="$1" rel="external">$1</a>');

                // convert @ references to links
                tweet = tweet.replace( /@((?:.\B)*.)/, '<a href="http://twitter.com/$1" rel="external">@$1</a>' );

                tweet = '<p>' + tweet + '</p>';
                html += tweet;
            }

            var tweets = $('#tweets');
            tweets.fadeOut(100, function() {
                tweets.html(html);
                tweets.fadeIn();
            });
        }
    );

});

