
function twitterWidget(username){
	new TWTR.Widget({
		version: 2,
		type: 'profile',
		rpp: 4,
		interval: 30000,
		width: 188,
		height: 300,
		theme: {
			shell: {
				background: '#b88cb8',
				color: '#fcf9fc'
			},
			tweets: {
				background: '#f5ebf5',
				color: '#140514',
				links: '#2a07eb'
			}
		},
		features: {
			scrollbar: false,
			loop: false,
			live: false,
			hashtags: true,
			timestamp: true,
			avatars: true,
			behavior: 'all'
		}
	}).render().setUser(username).start();	
}



