$(document).ready(function(){
	$.get('get_posts.php');
	do_update();
});
var last_update = 100000000;
function do_update(){
	$.getJSON("get_post.php", {date: last_update}, function(data){
		setTimeout(do_update, 7000);
		if(data == null || data.title == null || data.title.length < 2){
			return;
		}		
		var box = $('#box-template').clone().attr('id', '');
		
		box.find('.username').text(data.username) + ':';
		box.find('.message').text(data.title);
		box.find('.info').text(data.time_since);
		box.find('.user_pic').attr('src', data.image);
		box.attr('style', 'display:none');
		box.prependTo('#twitter-column');
		box.slideDown();
		
		last_update = data.published;
	});
	
	
}