﻿function refreshTweets() {
	var refreshId = setInterval(function() {
		$("#tweets1, #tweets2").text('');
		loadTweets();
	}, 10000);
}

$(document).ready(function() {
	refreshTweets();
});

$(window).load(function() {
	loadTweets();
});

