/* channel object */

function XMMobileChannel(chName,chKey,chNumber,currArtist,currSong,nHood,nHoodKey,chLink,schedURL,logo,desc,onAlltel,onAtt,onBberry){
	this.channelName = chName;
	this.channelKey = chKey;
	this.channelNumber = chNumber;
	this.artist = currArtist;
	this.songtitle = currSong;
	this.neighborhood = nHood;
	this.neighborhoodKey = nHoodKey;
	this.channelLink = chLink;
	this.scheduleURL = schedURL;
	this.logoImagePath = logo;
	this.description = desc;
	this.onAlltel = onAlltel;
	this.onAtt = onAtt;
	this.onBberry = onBberry;	
}