$(document).ready(function() {
	/* Load up the Twitters and UI */
	$.getJSON('http://twitter.com/statuses/user_timeline/megatokyo.json?count=3&callback=?', function(obj) {
		$('#feed-twitter-megatokyo').append(twitterToHTML(obj));
		$('#feed-twitter-megatokyo').hover(function(){ $(this).children('ul').show() }, function(){ $(this).children('ul').hide() });
       	});
	$.getJSON('http://twitter.com/statuses/user_timeline/fredrin.json?count=3&callback=?', function(obj) {
		$('#feed-twitter-fredrin').append(twitterToHTML(obj));
		$('#feed-twitter-fredrin').hover(function(){ $(this).children('ul').show() }, function(){ $(this).children('ul').hide() });
	});
});
