/***********************************************/
/*	FileName: tweet.js
/*	data:2011/07/13
/***********************************************/

new TWTR.Widget({
	version: 2,
	type: 'profile',
	rpp: 3,
	interval: 5000,
	width: 380,
	height: 250,
	theme: {
		shell: {
			background: '#aee4c3',
			color: '#ffffff'
		},
		tweets: {
			background: '#d3f2df',
			color: '#595959',
			links: '#2a6112'
		}
	},
	features: {
		scrollbar: false,
		loop: true,
		live: false,
		hashtags: true,
		timestamp: true,
		avatars: false,
		behavior: 'default'
	}
}).render().setUser('takafumi19san').start();

