/******************************************************************************
 team is an object.  This is the definition for that object.  'new' will
 create a new instance of competitor and stuff parameter data into and
 initialize properties of the object.
 ******************************************************************************/
function team(school, score) {
	this.school = school;										// string
	this.score = score;    								  // float
	this.place = "&nbsp;";									// string
}