// JavaScript Document
new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 22,
  interval: 6000,
  width: 'auto',
  height: '1000',
  theme: {
	shell: {
	  background: '#ffffff',
	  color: '#333333'
	},
	tweets: {
	  background: '#ffffff',
	  color: '#777777',
	  links: '#395693'
	}
  },
  features: {
	scrollbar: false,
	loop: false,
	live: true,
	hashtags: true,
	timestamp: true,
	avatars: true,
	behavior: 'all'
  }
}).render().setUser('scubillosf').start();

