
		// ==============================================
		// Copyright 2004 by CodeLifter.com
		// Free for all; but please leave in this header.
		// ==============================================
		
		var Quotation=new Array() // do not change this!
		
		// Set up the quotations to be shown, below.
		// To add more quotations, continue with the
		// pattern, adding to the array.  Remember
		// to increment the Quotation[x] index!
		
		Quotation[0] = "\"<i>I passed the PMP test today.  Thanks again for a great class.  I used several other books and took other classes, but your class was the best one I have had.</i>\"<br><br>-  S. Cutler, Tampa, Florida -- June, 2007";
		Quotation[1] = "\"<i>Enjoyed the course tremendously!</i>\"<br><br>- P. Montigny, Health Canada, Oct. 1, 2004";
		Quotation[2] = "\"<i>Your project management workshop was the best course I have ever taken!</i>\"<br><br>- N. Blak, National Research Council, November 8, 2002";
		Quotation[3] = "\"<i>Beautifully customized and people-oriented  -- A++ -- will recommend your course to colleagues and friends.</i>\"<br><br>- N. Roy, PWGSC, March 22, 2007";
		Quotation[4] = "\"<i>Fantastic course with a balanced combination between hands-on and theory. Wonderful instructor with great knowledge to share. Look forward to more wonderful courses.</i>\"<br><br>- T. Hakmi, ITPLANIT, April 19, 2007";
		Quotation[5] = "\"<i>The instructor has the ability to use practical examples that demonstrate the software's capabilities.</i>\"<br><br>- J. Hook, Lockheed-Martin, May 10, 2002";
		
		// ======================================
		// Do not change anything below this line
		// ======================================
		var Q = Quotation.length;
		var whichQuotation=Math.round(Math.random()*(Q-1));
		function showQuotation(){document.write(Quotation[whichQuotation]);}
		showQuotation();
