		$(document).ready(function(){
		$(".tweet").tweet({
			username: "mayfieldhsband",
			join_text: "auto",
			avatar_size: 20,
			count: 10,
			filter: function(t){ return new Date() - t["tweet_time"] < 1 * 24 * 60 * 60 * 1000; },
			auto_join_text_default: "we said,", 
			auto_join_text_ed: "we",
			auto_join_text_ing: "we were",
			auto_join_text_reply: "we replied to",
			auto_join_text_url: "we were checking out",
			loading_text: "loading tweets..."
		}).bind("empty", function() { $(this).append("<b>No New Tweets Today</b>"); });
	});
