// JavaScript Document

new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 5,
  interval: 6000,
  width: '310',
  height: 350,
  theme: {
    shell: {
      background: '#1e1e1e',
      color: '#ffffff'
    },
    tweets: {
      background: '#222',
      color: '#ffffff',
      links: '#098adb'
    }
  },
  features: {
    scrollbar: false,
    loop: false,
    live: false,
    hashtags: true,
    timestamp: true,
    avatars: false,
    behavior: 'all'
  }
}).render().setUser('illusionalr').start();

