window.addEvent('domready', function() {
	var myTwitterRequest = new Request.JSONP({
		url: 'http://twitter.com/statuses/user_timeline/mathesonjeff.json',
		data: {
			count: '3'
		},
		noCache: true,
		onComplete: function(myTweets) {
			var el = document.id('twitter-feed');
			el.empty();
			myTweets.each(function(tweet) {
				var myElement = new Element('div',{
					html: '<p style="padding:0">' + tweet.text + '</p>' + '<p style="padding:0 0 5px 0;text-align:right">' + tweet.created_at + '</p>'
				}).injectInside('twitter-feed');
	'<p style="padding:0;text-align:right"><highlight>[</highlight><a href="http://www.twitter.com/mathesonjeff" target="_blank" title="Follow Jeff`s Tweets">Follow Jeff`s Tweets&raquo;</a><highlight>]</highlight></p>'

			});
}
	}).send();
});
