(function($){
		$.fn.getPhrase = function(options) {
		var tw = $.extend({}, $.fn.getPhrase.defaults, options);
		$(this).append($('<span id="'+tw.loaderId+'">'+tw.loaderText+'</span>'));
		$.getScript("http://twitter.com/statuses/user_timeline/"+tw.userName+".json?callback=callback&count="+tw.numTweets, function() {
		$("#twitt-loader").remove();
		});
		};
	$.fn.getPhrase.defaults = {
		userName: null,
		numTweets: 1,
		loaderId: "loader",
		loaderText: " "
		};
})(jQuery);