function ObjectStorage(){
	this.objects = new Array();
}

//overwrites old object 
ObjectStorage.prototype.storeObject = function(name, obj){
	this.objects[name] = obj;
}

ObjectStorage.prototype.getObject = function(name){
	return this.objects[name];
}