/* Twitter */
$(function() {
	new TWTR.Widget({
		id: 'twitterArea',
		version: 2,
		type: 'profile',
		rpp: 5,
		title: '',
		subject: '',
		interval: 6000,
		width: 260,
		height: 400,
		theme: {
			shell: {
				background: '#666666',
				color: '#ffffff'
			},
			tweets: {
				background: '#000000',
				color: '#ffffff',
				links: '#CC0000'
			}
		},
		features: {
			scrollbar: false,
			loop: false,
			live: false,
			hashtags: true,
			timestamp: true,
			avatars: false,
			toptweets: true,
			behavior: 'all'
		}
	}).render().setUser('JAPANATION_PRJ').start();
});

