$(document).ready(function(){
	if ($.url.attr("protocol") != 'https') {
		$.getScript("http://www.mightaswelldance.com/javascripts/jquery-tweet.js", function(){
			$(".tweet").tweet({
			    join_text: "auto",
			    count: 2,
			    auto_join_text_default: "Judson said,",
			    auto_join_text_ed: "I",
			    auto_join_text_ing: "Judson is",
			    auto_join_text_reply: "Judson replied to",
			    auto_join_text_url: "Judson was checking out",
			    loading_text: "Loading Tweets..."
			});
		});
	}
	else
	{
		$("#twitter").hide();
	}
});