// API para Twitter - Capta "SetUser" e mostra os Twitts do usuário na div "caixa-twitter".

new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 3,
  interval: 5000,
  width: 280,
  height: 200,
  theme: {
    shell: {
      background: 'transparent',
      color: '#4d4a4d'
    },
    tweets: {
      background: '#transparent',
      color: '#6d6e6e',
      links: '#07b9bf'
    }
  },
  features: {
    scrollbar: false,
    loop: false,
    live: true,
    hashtags: true,
    timestamp: true,
    avatars: false,
    behavior: 'default'
  }
}).render().setUser('bravatec').start();
