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