/*neighborhood object */

function XM_neighborhood(nHoodKey,nHood){
	this.key = nHood;
	this.name = nHood;
	this.channelAry = new Array();
	this.channelCollection = new Object();
}

XM_neighborhood.prototype.addChannel = function(chNumber,channel){
	this.channelCollection[chNumber] = channel;
	this.channelAry[this.channelAry.length] = channel.channelNumber;
}