/*
==============================================================================
twitter
==============================================================================
*/

new TWTR.Widget({
	version: 2,
	type: 'profile',
	rpp: 6,
	interval: 3000,
	width: 'auto',
	height: 300,

	theme: {
		shell: {
			background: 'transparent'
		},
		tweets: {
			background: 'transparent'
		}
	},

	features: {
		scrollbar: true,
		loop: false,
		live: true,
		hashtags: false,
		timestamp: true,
		avatars: false,
		behavior: 'all'
	}
}).render().setUser('GAIASYMPHONY').start();


