/* This function generates a random number to be used later to call random text/images when the page is reloaded. */
function getRandom(maxNum)
{
if (Math.random && Math.round)
	{
    var ranNum= Math.round(Math.random()*(maxNum-1));
    ranNum+=1;
    return ranNum;
	}
else
	{
	today=new Date();
	hours=today.getHours();
	mins=today.getMinutes();
  	secn=today.getSeconds();
	if (hours==19)
		{
		hours=18;
		}
	var ranNum= (((hours+1)*(mins+1)*secn)%maxNum)+1;
	return ranNum;
	}
}

/* This section writes text/images from an array when called from the body of the page. */
/* Adjust the maxContent value below to match the number of items in the array. */
var maxContent=4;
var whichContent=getRandom(maxContent);
whichContent--;

/* Define the array here. */
var Content=new Array(maxContent);
Content[0]="<p><strong>&ldquo;I learned so much as we packed in the session with my pending presentations.  You were fabulous, a true teacher, and I feel more confident than ever of my ability to be successful as a public speaker.&rdquo;</strong></p><p class='testimonial_content_sm'>&ndash; L. Sackler, <br>Vice President, Wealth Management Advisor, Merrill Lynch</p>"

Content[1]="<p><strong>&ldquo;The meeting went well and the speeches were great.  Thanks for all of your help.'&rdquo;</strong></p><p class='testimonial_content_sm'>&ndash; S. Binder, Senior Vice President, Publisher, Golf Digest</p>"

Content[2]="<p><strong>&ldquo;It was wonderful to meet you and get the opportunity to work with you.  Thank you for your comments, suggestions and recommendations!  I will work hard to perfect the technique and will strive to be a good pupil!  Much success!'&rdquo;</strong></p><p class='testimonial_content_sm'>&ndash; H. Torok, M.D.</p>"


Content[3]="<p><strong>&ldquo;I have worked with Mary Mayotte + Associates for over a decade on numerous challenging assignments.  No personal services firm, in my experience, comes close to their quality, character, expertise and overall professionalism.  Anyone who knows Mary would expect nothing less from her firm.'&rdquo;</strong></p><p class='testimonial_content_sm'>&ndash; A. Martin, World Food Programme </p>"


Content[4]="<p><strong>&ldquo;Not only has Mary taught some of our most expert presenters, but she has also helped along some pretty tough cases.  Mary knows how to bring out the essence of a person by seeing their strength of conviction.  Her work is genuine, thoughtful and results-driven.'&rdquo;</strong></p><p class='testimonial_content_sm'>&ndash; D. LeGrand-Hart, CEO, LeGrand Hart</p>"




/* Write the content to the document. */
document.write(Content[whichContent]);

