/******************************************************************************
 competitor 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 competitor(fName, lName, year, school, score) {
	this.fName = fName;											// string
	this.lName = lName;											// string
	this.year = year;												// int
	this.school = school;										// string
	this.score = score;    								  // float
	this.place = "&nbsp;";									// string
	this.getFullName = getFullName;					// getFullName() returns string with competitor's full name
}