$(document).ready(function() {
	//var url = "http://twitter.com/status/user_timeline/alexandera.json?count=3&callback=?"; 
	var url = "http://pipes.yahoo.com/pipes/pipe.run?_id=6d033275bd78479dc9c99961bec7a58b&_render=json&_callback=?";
	$.getJSON(url, 
		function(data){
			var x=0;
			$.each(data.value.items, function(i, item) {
				if (x<3) {
					var t = item.title;
					$("#twitterfeed").append('<p>' + t.substring(12) + '</p>');
					x++;
				}
				else { return false; }
			});
		}
	);
	String.prototype.linkify = function() {
		return this.replace(/[A-Za-z]+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+/, function(m) {
			return m.link(m);
		});
	}
});