$(document).ready(function() {
	$('#img3').cycle({
		autostop: true,
		autostopCount: 6
	});
	
	$.ajax({
		type: 'GET',
		url: 'http://twitter.com/statuses/user_timeline/kenatkins.json?count=1',
		dataType: 'jsonp',
		success: function(json){
			$.each(json, function(i, item){
				$('#tweet').html(item.text);
			});
		}
	});

});