	<!-- Begin Quote Rotation Code
	var ic = 4     // Number of alternative images
	var quote = new Array(ic)  // Array to hold filenames for quotes
	var quoted = new Array(ic)  // Array to hold filenames for quoters
	
	quote[0] = "&quot;Kristi has been an integral member of our team for over eight years, our 'corporate coach'!  She has been an educator, a personal advisor, a team advisor and when needed - the challenging voice in the room.  In our business it is imperative the leadership work and respond as a team.  Each time a member of the leadership group is added or subtracted, the dynamics of the team can change dramatically.  You can 'let nature take its course', but frankly we don't always have the time and patience to let transition periods go unchecked.  We've found that Kristi's coaching in these situations have been invaluable.  We are a better, more effective team because of her coaching - and probably best of all, she helps us enjoy what we do.&quot;"
	quoted[0] = "<p class='credit'>Foundation Medical Partners,<br />Sue DeSocio, President/COO<br />and the leadership team</p>"
	
	quote[1] = "<p>&quot;Working with Kristi over the past several years has been a true joy. I have found her to be a skilled facilitator, team builder, and conflict resolution specialist whose attention to detail is nothing short of phenomenal. Where there is discord, she finds common ground; where there is organizational chaos, she finds the path to order and understanding. And when I've come to my wits end, she brings humor and a dispassionate eye that has never failed to get me through whatever crisis is at hand.&quot;</p>"
	quoted[1] = "<p class='credit'>Cheryl Brogan,<br />Learning Program Manager<br />Hewlett-Packard<br />Marlborough, MA</p>"

	quote[2] = "<p>&quot;Kristi is an insightful person. She can see beyond the mask we wear to delve deep into the psyche of the person she is dealing with and really understand how they work. She can help an organization gain a deep understanding of what needs to be done to delight clients and boost employee morale at an individual level by viewing the situation through her experienced eyes.&quot;</p>"
	quoted[2] = "<p class='credit'>Harsha Raghavan,<br />Client Account & Service Delivery Manager<br />TalentBurst Inc.</p>"

	quote[3] = "<p>&quot;Kristi understands the unique culture and politics of higher education.   Kristi's own experiences in both higher education administration and teaching provide her the ability to work effectively with all levels of faculty and staff.   She is one of the first persons I look to for assistance with internal unrest with a department of division.   In addition, she is a blast to work with!&quot;</p>"
	quoted[3] = "<p class='credit'>Lynn F. Olson<br />Director of Human Resources/Affirmative Action<br />Clark University</p>"
	
	//quote[x] = "&quot;&quot;"
	//quoted[x] = "<BR><a href=''></a>"
	
	function pickRandom(range) {
		if (Math.random)
			return Math.round(Math.random() * (range-1))
		else {
			var now = new Date()
			return (now.getTime() / 1000) % range
		}
	}
	
	//Pick a random quote
	var choice = pickRandom(ic)
	document.write(quote[choice] + quoted[choice]);

	

