$(document).ready(function(){
	$("#tweet").tweet({
		username: "bigwatchcompany",
		count: 2,
		fetch: 12,
		filter: function(t){ return ! /^@\w+/.test(t["tweet_raw_text"]); },
		template: function(i){return i["text"]}
	});
});

