function twitter() {
    new TWTR.Widget({
      version: 2,
      type: 'profile',
      rpp: 5,
      interval: 6000,
      width: 230,
      height: 160,
      theme: {
        shell: {
          background: '#662c16',
          color: '#ffffff'
        },
        tweets: {
          background: '#fffcff',
          color: '#662c16',
          links: '#eb07dc'
        }
      },
      features: {
        scrollbar: true,
        loop: false,
        live: false,
        hashtags: true,
        timestamp: true,
        avatars: true,
        behavior: 'all'
      }
    }).render().setUser('chocolatetours').start();
};

