//Quotations Variables
numberOfQuotations = 14;
c_quotations = new Array(numberOfQuotations);
c_authors = new Array(numberOfQuotations);

//Quotation List seperated into quote and author arrays
c_quotations[0] = "Andre L. Beaudoin is a compelling speaker who backs up his poignant words with practical tips and useful insights.";
c_authors[0] = "Robert Peck Sr.<br>Zestfest";
c_quotations[1] = "Andre is able to challenge audiences to rethink old paradigms and distill complex ideas into memorable points.";
c_authors[1] = "Robert Peck Sr.<br>Zestfest";
c_quotations[2] = "The information you packed into one hour was both interesting and thought provoking.";
c_authors[2] = "Gary E. LaPlant<br>Chief Operating Officer Sonitrol Communications";
c_quotations[3] = "Pointing out the need to live a balanced life will certainly improve the performance and personal lives of my staff.";
c_authors[3] = "Gary E. LaPlant<br>Chief Operating Officer Sonitrol Communications";
c_quotations[4] = "…into the next day attendees were still talking about how your presentation gave them confidence and motivation.";
c_authors[4] = "Alfred D. Bradshaw, Ph.D.<br>Southern Connecticut State University";
c_quotations[5] = "Your Convictable Commitment presentation was effective. I committed to taking a course that I am now registered for.";
c_authors[5] = "Bill Smith<br>Broker/Owner Century21";
c_quotations[6] = "I have met a wide array of strong speakers and motivators, but Andre is the best…";
c_authors[6] = "Joel Garcia<br>Distinguished Toastmaster";
c_quotations[7] = "WOW! You can consider yourself competition for Anthony Robbins.";
c_authors[7] = "Lauren S. Wright<br>Dir. Human Resources Open Solutions Inc";
c_quotations[8] = "I feel so empowered. I am ready to do affirmations.";
c_authors[8] = "Rev. Mary Latela Greater Hartford Campus Ministry";
c_quotations[9] = "I will be thinking of you for other opportunities…you were a big hit. ";
c_authors[9] = "Jim DeMaio<br>Learning Dynamics";
c_quotations[10] = "Great information, presented in a simple matter of fact way.";
c_authors[10] = "Joan \"Aurora\" Clark<br>Owner Healing Gateways ";
c_quotations[11] = "Practical, immediately applicable, adaptable for future growth. Self-renewing ideas. Good job!";
c_authors[11] = "Jill Bowden";
c_quotations[12] = "If someone is looking for a tremendous recommendation for Andre, you've got it!";
c_authors[12] = "Dave Marsden<br>RE/MAX Precision Realty ";
c_quotations[13] = "Andre's ability to motivate an audience and deliver a powerful message can make a difference in your life.";
c_authors[13] = "Robert J. Petrausch<br>Former Fortune 500 Executive ";
c_quotations[14] = "Thanks so much, for your time and commitment. Really enjoyed working with you and appreciated how organized you were!";
c_authors[14] = "Jack Brooks<br>Director United Way of Meriden and Wallingford";
c_quotations[15] = "You encouraged each of us to be involved in how these techniques apply to us, our lives and our hopes and dreams.";
c_authors[15] = "June Fabre<br>President Smart Healthcare, LLC";


//Function to display random quote on page
function displayCompliment()
{
	var now=new Date();
	randomNumber = now.getSeconds() % numberOfQuotations;
	document.write(c_quotations[randomNumber],"<br><div align=\"right\">-",c_authors[randomNumber],"</div>");
}