$(function() {
	$.fn.getTwitter = function(options) {
		$(this).hide().append("<ul id=\"twitter_update_list\"></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/phcreative.json?callback=twitterCallback2&count=2", function() {
			$(loadTweets).hide();
			$("#twitter_update_list").fadeIn(250);
		});
	};
	var timeout = setTimeout(function() {
		if ($("#twitter_update_list li").text()=="") { $("#loadTweets").hide().html("Sorry, but we were unable to load the Twitter feed. Blame the bird!").fadeIn(); }
    }, 10000);
    $("#twitFeed").getTwitter();
});