function embedTwitter(id) {
	new TWTR.Widget({
	  version: 2,
	  type: 'profile',
	  rpp: 4,
	  interval: 6000,
	  width: 430,
	  height: 500,
	  theme: {
		shell: {
		  background: '#b2dfda',
		  color: '#ffffff'
		},
		tweets: {
		  background: '#ffffff',
		  color: '#333333',
		  links: '#0063dc'
		}
	  },
	  features: {
		scrollbar: false,
		loop: false,
		live: false,
		hashtags: true,
		timestamp: true,
		avatars: false,
		behavior: 'all'
	  }
	}).render().setUser(id).start();
}




