// JavaScript Document

new TWTR.Widget({
  version: 2,
  type: 'profile',
  //type: 'search',
  rpp: 10,
  interval: 10000,
  width: 250,
  height: 300,
  theme: {
    shell: {
      background: '#000000',
      color: '#ffffff'
    },
    tweets: {
      background: '#ffffff',
      color: '#453945',
      links: '#b30000'
    }
  },
  features: {
    scrollbar: false,
    loop: true,
    live: true,
    hashtags: true,
    timestamp: true,
    avatars: false,
    behavior: 'default'
  }
}).render().setUser('Craftsman93').start();
