// JavaScript Document

new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 50,
  interval: 30000,
  width: 190,
  height: 550,
  theme: {
    shell: {
      background: '#333333',
      color: '#ffffff'
    },
    tweets: {
      background: '#000000',
      color: '#ffffff',
      links: '#ffff55'
    }
  },
  features: {
    scrollbar: true,
    loop: false,
    live: true,
    behavior: 'all'
  }
}).render().setUser('nibtrading').start();

