jQuery( function($) {
	$.getJSON(
					"http://www.imexis.net/rss2json.php?url=http://twitter.com/statuses/user_timeline/29956549.rss&jsonp_callback=?",
					function(data) {
						var twitterFeed = $("#twitter-feed").hide();
						$.each(data, function(i, val) {
							// alert(val);
								twitterFeed.append("<p>"
										+ linkTwitterUsers(linkUrls(val.title
												.split(/^imexis\:/).join("")))
										+ "</p>");
								twitterFeed.append("<p class=\"pubDate\">"
										+ val.pubdate + "</p>");
							});
						twitterFeed.fadeIn();
					});
	$.getJSON(
					"http://www.imexis.net/rss2json.php?url[]=http://www.google.com/reader/public/atom/user%2F06273614783747237056%2Flabel%2Fimexis-public&url[]=http://www.google.com/reader/public/atom/user%2F14167091602840195969%2Flabel%2FImexis-Public&jsonp_callback=?",
					function(data) {
						var twitterFeed = $("#rss-feed").hide();
						$.each(data, function(i, val) {
							// alert(val);
								twitterFeed.append("<p><a href=\""
										+ val.permalink + "\">" + val.title
										+ "</a></p>");
								twitterFeed.append("<p class=\"pubDate\">"
										+ val.pubdate + " | <a href=\""
										+ val.sourcePermalink + "\">"
										+ val.sourceTitle + "</a></p>");
							});
						twitterFeed.fadeIn();
					});
});