$(function() {
	$.fn.getTwitter = function(options) {
		$(this).hide().append("<ul id=\"twitter_update_list\"><li></li></ul>");
		$("ul#twitter_update_list").hide();
		var loadTweets = $("<p id=\"loadTweets\">Loading...</p>");
		$(this).append(loadTweets);
		$(this).show();
		$.getScript("http://twitter.com/javascripts/blogger.js");
		$.getScript("http://twitter.com/statuses/user_timeline/neilkendall.json?callback=twitterCallback2&count=2", function() {
			$(loadTweets).hide();
			$("#twitter_update_list").fadeIn(250);
		});
	};
	
	var timeout = setTimeout(function() {
		if ($("#twitter_update_list li").text()=="") {
			$("#twitter").hide();
			$("#twitter").html("<p>Sorry, but we were unable to load the Twitter feed.<br /> Blame the bird!</p>").fadeIn();
		}
    }, 10000);
    
    $("#twitter").getTwitter();
    
});

