
function update_search(search_query)
{
	var last_tweet_id=0;
	$('.tweet').each(function()
	{
		if (this.id>last_tweet_id)
		{
			last_tweet_id=this.id;
		}
	});
	$.get('/search/'+search_query+'/'+last_tweet_id+'/',function(data)
	{
		if (data.length>0)
		{
			$('.twitter_table').prepend(data);
			$('abbr.timeago').timeago();
			$('.tweet').slideDown(500,function()
			{
				$('.twitter_table tr:gt(50)').remove();
			});
		}
		else
		{
			$('abbr.timeago').timeago();
		}
	});
}

$(document).ready(function()
{
	$('abbr.timeago').timeago();
	setInterval('update_search(\''+$('#search_query').val()+'\')',10000);
	$("a[@rel~='external']").click(function()
	{
		this.target='_blank';
	});
});
