// JavaScript Document
window.onload = function () {
	new TWTR.Widget({
		search: 'from:sparecanto',
		id: 'twitterSpaRecanto',
		version: 2,
		rpp: 3,
		loop: true,
		width: 195,
		height: 400,
		interval: 7000,
		title: '@sparecanto',
		subject: 'Twitter - Spa Recanto',
		theme: {
			shell: {
				background: '#FFF',
				color: '#000'
			},
			tweets: {
				background: '#FFF',
				color: '#000',
				links: '#006699'
			}
		},
		features: {
			fullscreen: false,
			hashtags: true,
			avatars: true,
			timestamp: false,
			live: false,
			behavior: 'default',
			loop: true,
			scrollbar: false,
		}		
	}).render().start();
}