	TName = new TeamNames()  	function TeamNames(){		this[0] = new TTm("Buffalo","Bills","BB");    	this[1] = new TTm("Miami","Dolphins","MD");    	this[2] = new TTm("New England","Patriots","NE");    	this[3] = new TTm("New York","Jets","NY");		this[4] = new TTm("Cincinnati","Bengals","CI");		this[5] = new TTm("Cleveland","Browns","CL");		this[6] = new TTm("Tennessee","Titans","TT");		this[7] = new TTm("Pittsburgh","Steelers","PS");		this[8] = new TTm("San Diego","Chargers","SD");		this[9] = new TTm("Kansas City","Chiefs","KC");		this[10] = new TTm("Oakland","Raiders","OR");		this[11] = new TTm("Seattle","Seahawks","SS");		this[12] = new TTm("Arizona","Cardinals","AC");		this[13] = new TTm("Dallas","Cowboys","DC");		this[14] = new TTm("Philadelphia","Eagles","PE");		this[15] = new TTm("Washington","Redskins","WR");		this[16] = new TTm("Chicago","Bears","CB");		this[17] = new TTm("Detroit","Lions","DL");		this[18] = new TTm("Minnesota","Vikings","MV");		this[19] = new TTm("Green Bay","Packers","GB");		this[20] = new TTm("Atlanta","Falcons","AF");		this[21] = new TTm("New Orleans","Saints","NO");		this[22] = new TTm("San Francisco","49ers","SF");		this[23] = new TTm("St Louis","Rams","SR");	}	function TTm(TCity, TName, TNick){		this.Name = TCity + ' ' + TName;		this.City = TCity;		this.Nickname = TName;		this.Nick = TNick;	}
