function EstateWeb_Objects_CollectionObject(){
	this.Items = new Array();
}

EstateWeb_Objects_CollectionObject.prototype.Add = EstateWeb_Objects_CollectionObject_Add
EstateWeb_Objects_CollectionObject.prototype.Item = EstateWeb_Objects_CollectionObject_Item;

function EstateWeb_Objects_CollectionObject_Add(){
	for ( var i = 0; i < this.Items.length; i ++){
		if ( this.Items[i][0].toString() == arguments[0].toString() ){
			this.Items.splice(i,1);
		}
	}
	var aObjectInformation = new Array()
	aObjectInformation[0] = arguments[0];
	aObjectInformation[1] = arguments[1];
	this.Items[this.Items.length] = aObjectInformation;
}

function EstateWeb_Objects_CollectionObject_Item(){
	for (var i = 0; i < this.Items.length; i ++){
		if ( this.Items[i][0].toString() == arguments[0].toString() ){
			return this.Items[i][1];
		}
	}
}
