$(document).ready(function(){
    latestTweets();
});

function latestTweets(){
    $('.tweet').tweet({
        username: 'contweetcontrol',
        avatar_size: 48,
        count: 5,
        loading_text: 'loading tweets...'
    });

    //If user has JS off this will be ignored
    $('.noJavaScript').css('display', 'none');
}
