$(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 tweets...</p>");
		$(this).append(loadTweets);
		$(this).show();
		$.getScript("http://twitter.com/javascripts/blogger.js");
		$.getScript("http://twitter.com/statuses/user_timeline/skevents.json?callback=twitterCallback2&count=3", function() {
			$(loadTweets).hide();
			$("#twitter_update_list").fadeIn(250);
		});
	};
	
	var timeout = setTimeout(function() {
		if ($("#twitter_update_list li").text()=="") {
			$("#twitter_update_list li").html("<span>Oops, it looks like there was a problem loading the feed, try refreshing the page or follow us directly <a href=\"http://twitter.com/skevents\" target=\"_blank\">@skevents</a>!</span>");
		}
    }, 10000);
    
    $("#twitterFeed").after("<a href=\"http://twitter.com/skevents\" class=\"twitter\">Follow us on Twitter</a>").getTwitter();
});