// JavaScript Document
new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 1,
  interval: 30000,
  width: 220,
  height: 150,
  theme: {
    shell: {
      background: '#0099FF',
      color: '#FFFFFF'
    },
    tweets: {
      background: '#ffffff',
      color: '#333333',
      links: '#ff6600'
    }
  },
  features: {
    scrollbar: false,
    loop: false,
    live: false,
    behavior: 'all'
  }
}).render().setUser('tfolakeledotcom').start();

