// JavaScript Document
new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 4,
  interval: 6000,
  width: 300,
  height: 350,
  theme: {
    shell: {
      background: '#868c30',
      color: '#f0e3df'
    },
    tweets: {
      background: '#d1b943',
      color: '#ffffff',
      links: '#0753eb'
    }
  },
  features: {
    scrollbar: false,
    loop: false,
    live: false,
    hashtags: true,
    timestamp: true,
    avatars: false,
    behavior: 'all'
  }
}).render().setUser('Acopde').start();

