// JavaScript for displaying the latest twitter posts

new TWTR.Widget
(
	{
		version: 2,
		type: 'profile',
		rpp: 3,
		interval: 6000,
		width: 195,
		height: 600,
		theme: 
		{
			shell:
			{
				background: '#006633',
				color: '#FFFFFF'
			},
			tweets:
			{
				background: '#FFFFFF',
				color: '#333333',
				links: '#006633'
			}
		},
		features: 
		{
			scrollbar: false,
			loop: false,
			live: false,
			hashtags: true,
			timestamp: true,
			avatars: false,
			behavior: 'all'
		}
	}
).render().setUser('WFEGLowCarbon').start();


