// JavaScript Document

jQuery.noConflict();
jQuery(document).ready(function($){
	$('#tweets').jTweetsAnywhere({
	
		username: 'osaka_fashion',
		count: 4,
		showTweetFeed: {
			showProfileImages: true,
			showTimestamp: {
				refreshInterval: 15
			},
			autorefresh: {
				mode: 'auto-insert',
				interval: 30
			}	
		},
		onDataRequestHandler: function(stats, options) {
				if (stats.dataRequestCount < 120) {
					return true;
				}
				else {
					stopAutorefresh(options);
					alert("Twitterへのリクエスト回数の上限になりました。");
				}
			}
			
	});
});

