$(document).ready(function() {

	$.getJSON("http://twitter.com/statuses/user_timeline/gaterestaurant.json?callback=?&count=3", function(data) {

    	$("#twitter .text").html("<p>\"" + data[0].text + "\"</p>" + "<p>\"" + data[1].text + "\"</p>" + "<p>\"" + data[2].text + "\"</p>" );


    	$("#twitter .text").cycle({
		fx: 'fade'
	});


	});

    

});
