//ツイッタータイムラインの表示
showTwitter = function(){
	new TWTR.Widget({
		version: 2,
		type: 'profile',
		rpp: 5,
		interval: 6000,
		width: 'auto',
		height: 300,
		theme: {
			shell: {
				background: '#ffffff',
				color: '#000000'
			},
			tweets: {
				background: '#ffffff',
				color: '444444',
				links: '#0099ff'
			}
		},
		features: {
			scrollbar: false,
			loop: false,
			live: false,
			hashtags: true,
			timestamp: true,
			avatars: false,
			behavior: 'all'
		}
	}).render().setUser('hakuryuofficial').start();
}

