// This file contains the quotes: add as many as you like, contained within single quotes
// characters, and seperated by commas (see below for examples). Remember; you can't use
// single quote characters (') within each quote - instead, use an escaped-single-quote
// (\') [a quote with a slash in front of it], which will be translated to a single-quote
// character when the script runs.

function randomQuote() {
	quotes = new Array(
		'&quot;Thank you for the reply.  I will just keep checking. I love this format, and for busy ones like myself, this is great. Wish you could put the study couse for certification on here as a course.Just a suggestion.<br><strong>-- Faye Nielsen</strong>',
		'&quot; It\'s funny how things come around full circle.  I graduated over 20 years ago after studying under, and being employed by Kathy Ford Montgomery at my first Interior Design Job.She taught me so much, especially regarding professionalism. Now after several greatphases of career, I am self employed, and still/ again learning from folks who are associatedwith her.Fitting continuing education classes into a busy schedule is always difficult, but yourclass was definitely worth the time investment.  It was probably the most valuableclass I\'ve taken in several years.  Best wishes with your continued success.&quot;<br><strong>Sarah Dement, Dallas, TX</strong>',
		'&quot;A short note to say how much I enjoyed your seminar “How Much Are You Worth”  this past Thursday.  Not only was it invaluable I thought the material was well presented!  I look forward to future classes you may be conducting.  Thanks again. &quot;<br><strong>-- Catherine Badger, Houston, TX</strong>',
		'&quot;Thank you for the information.  I really enjoyed your CEU in Dallas and found the information very helpful.&quot;<br /><strong>-- Jene Laman, Professor, Texas State University</strong>'
	);
	
	return quotes[Math.floor(Math.random()*quotes.length)];
}

document.write(randomQuote());