function Tweetist(id, name, location){
	this.id = id;
	this.name = name;
	this.location = location;
	this.statuses = [];
	this.statusTimes = [];
	this.followers = [];
	this.loadComplete = false;
}
Tweetist.prototype.addFollower = function(follower){
	followers[followers.length] = follower;
}
Tweetist.prototype.addTweet = function(tweetTime, tweetText){
	statuses[tweetTime] = tweetText;
}
