function updateTwitter()
{
	$.getJSON("http://twitter.com/statuses/user_timeline/lilithapp.json?count=10&callback=?",function(data){
			twitterCallback2(data);
	});	
}

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

setInterval("updateTwitter()",60000); 

