// JavaScript Document
new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 6,
  interval: 30000,
  width: 'auto',
  height: 400,
  theme: {
    shell: {
      background: '#486075',
      color: '#ffffff'
    },
    tweets: {
      background: '#878787',
      color: '#ffffff',
      links: '#ded892'
    }
  },
  features: {
    scrollbar: true,
    loop: false,
    live: true,
    hashtags: false,
    timestamp: true,
    avatars: false,
    behavior: 'all'
  }
}).render().setUser('mazlunden').start();

