function twitter()
{
    new TWTR.Widget(
        {
            version: 2,
            type: 'profile',
            rpp: 2,
            interval: 30000,
            width: 'auto',
            height: 300,
            theme:
            {
                shell:
                {
                    background: '#c43106',
                    color: '#ffffff'
                },
                tweets:
                {
                    background: '#ffffff',
                    color: '#000000',
                    links: '#49338b'
                }
            },
            features:
            {
                scrollbar: false,
                loop: false,
                live: false,
                behavior: 'all'
            }
        }
    ).render().setUser('benrobbens').start();
}
