function MakeArray(n) {
	this.length = n
	return this
}

axioms = new MakeArray(7)
axioms[1] = "People don't care how much you know until they know how much you care!"
axioms[2] = "Thoughtlife, not circumstances, determines happiness!"
axioms[3] = "Attitude is the criterion for success!"
axioms[4] = "Become genuinely interested in other people!"
axioms[5] = "Be a good listener!"
axioms[6] = "Give others a heartwarming smile!"
axioms[7] = "To succeed - nothing in the world can take the place of persistence!"


function customMaxims(oneDate) {
	var theMaximOfTheDay = axioms[oneDate.getDay() + 1]
	return theMaximOfTheDay
}