totalQuotes = 2
var number = Math.round(Math.random()*(totalQuotes-1)); 

function getQuote() {
	
	var quote = new Array(totalQuotes)
	quote[0]="I love T.O.M. Our district office loves T.O.M!";
	quote[1]="I absolutely love the T.O.M. software!  It has alleviated so much stress in my life!";

	return (quote[number])
}

function getQuoteBy() {

	var quoteBy = new Array(totalQuotes)
	quoteBy[0]="Darren Salo<br>Transportation Director<br>Folsom-Cordova Unified School District<br>Rancho Cordova, CA";
	quoteBy[1]="Donna Werge<br>Transportation Coordinator<br>Mount Olive Township BOE<br>Hackettstown, New Jersey";

	return (quoteBy[number])
	
}
