/*  THIS IS FOR A 160px wide TWITTER FEED WITH SIX TWEETS DISPLAYED */

new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 6,
  interval: 6000,
  width: 160,
  height: 300,
  theme: {
    shell: {
      background: '#DCDCDC',
      color: '#8D8067;'
    },
    tweets: {
      background: '#FFF',
      color: '#9B9776',
      links: '#1375be'
    }
  },
  features: {
    scrollbar: false,
    loop: false,
    live: false,
    hashtags: true,
    timestamp: true,
    avatars: false,
    behavior: 'all'
  }
}).render().setUser('swhitbo').start();
