$(function() {
    addTwitterFeed();
});

function addTwitterFeed() {
    $.getJSON('http://twitter.com/statuses/user_timeline/' +
        'AntoineLeclair.json?callback=?&count=10',
        function(tweets) {
            $('#tweet-template').tmpl(tweets).appendTo('#twitter');
    });
}

