/*
Twitter box
*/
var oTweet = new TWTR.Widget({
  version: 2,
  type: 'profile',
  id: 'twitter',
  rpp: 4,
  interval: 11000,
  width: 160,
  height: 300,
  theme: {
    shell: {
      background: '#32728c',
      color: '#ffffff'
    },
    tweets: {
      background: '#d6e3e8',
      color: '#000066',
      links: '#005866'
    }
  },
  features: {
    scrollbar: false,
    loop: true,
    live: true,
    hashtags: true,
    timestamp: true,
    avatars: false,
    behavior: 'default'
  }

  });

jQuery(document).ready(function() {
	oTweet.render().setUser('zwedenweb').start();
});

