// JavaScript Document
$(document).ready(function(){

	$.getJSON("http://twitter.com/statuses/user_timeline/developerworks.json?callback=?", function(data) {
	     $("#twitter_text").html(data[0].text);
		 //alert(dump(data[0]));
		 var date=new Date(data[0].created_at);
		 date.getMonth();
		 $("#twitter_time").html(date.getDate()+'/'+date.getMonth()+'/'+date.getFullYear());
		 
	});
	
});