// JavaScript Document
function initTwitter(){
	new TWTR.Widget({
	  version: 2,
	  type: 'profile',
	  rpp: 6,
	  interval: 6000,
	  width: 250,
	  height: 492,
	  theme: {
		shell: {
		  background: '#5b9dbf',
		  color: '#624b4d'
		},
		tweets: {
		  background: '#f0f0f0',
		  color: '#12152a',
		  links: '#00b4f7'
		}
	  },
	  features: {
		scrollbar: false,
		loop: false,
		live: false,
		hashtags: true,
		timestamp: true,
		avatars: false,
		behavior: 'all'
	  }
	}).render().setUser('DeWestkaap').start();
}
