/* Twitter関連 */
$(function(){
	$('#tweetsFeed').jTweetsAnywhere({
		username: 'appleticket',
		count: 10
	});
});

$(function(){
	$('#tweetsBox').jTweetsAnywhere({
		showTweetBox:{
			counter: true,
			width: 224,
			height: 65,
			label: '<span style="color: #999;font-size: 13px">ログイン後つぶやけます</span>',
			defaultContent: "@appleticket ",
			onTweet: function(textTweet){
				alert('つぶやきました: ' + textTweet);
			}
		}
	});
});

$(function(){
	$('#tweetsLogin').jTweetsAnywhere({
		showConnectButton: true,
		showLoginInfo: true
	});
});

