jQuery(function($){
	        $("#ticker").tweet({
	          username: "sacramentogold",
	          page: 1,
	          avatar_size: 40,
	          count: 10,
	          loading_text: "loading ..."
	        }).bind("loaded", function() {
	          var ul = $(this).find(".tweet_list");
	          var ticker = function() {
	            setTimeout(function() {
	              ul.find('li:first').animate( {marginTop: '-4em'}, 500, function() {
	                $(this).detach().appendTo(ul).removeAttr('style');
	              });
	              ticker();
	            }, 2500);
	          };
	          ticker();
	        });
	      });