jQuery(document).ready(function() {
	var matt_url = "http://pipes.yahoo.com/pipes/pipe.run?_id=a67efd867224520308eed1d1e14a358a&_render=json&_callback=?";
	jQuery.getJSON(matt_url, 
		function(data){
			//$.each(data.value.items, function(i, item) {
				var t = data.value.items[0].title;
				jQuery("#matt_twitterfeed").append('<p>' + t.substring(15) + '</p>');
			//});
		}
	);

	/*var melissa_url = "http://pipes.yahoo.com/pipes/pipe.run?_id=9a81b5b1a490bf9d2e4f9a8fcb07b06a&_render=json&_callback=?";
	jQuery.getJSON(melissa_url, 
		function(data){
			//$.each(data.value.items, function(i, item) {
				var t = data.value.items[0].title;
				jQuery("#melissa_twitterfeed").append('<p>' + t.substring(14) + '</p>');
			//});
		}
	);*/

	var melissa_url = "http://pipes.yahoo.com/pipes/pipe.run?_id=434a9d8bd8989e9d0ef7772adca3c09c&_render=json&_callback=?";
	jQuery.getJSON(melissa_url, 
		function(data){
			//$.each(data.value.items, function(i, item) {
				var t = data.value.items[0].title;
				jQuery("#melissa_twitterfeed").append('<p>' + t.substring(15) + '</p>');
			//});
		}
	);
});