// JavaScript Document

new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 3,
  interval: 5000,
  width: 240,
  height: 240,
  theme: {
    shell: {
      background: '#333333',
      color: '#ffffff'
    },
    tweets: {
      background: '#000000',
      color: '#ffffff',
      links: '#d8c18f'
    }
  },
  features: {
    scrollbar: true,
    loop: false,
    live: true,
    hashtags: true,
    timestamp: true,
    avatars: false,
    behavior: 'all'
  }
}).render().setUser('yaoman_urawa').start();

