/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 4;
var quote = Math.floor (num_of_quotes * Math.random());
var author = "";
var body = "";
var type = "";

switch(quote){
	case 0:
		author="Chris Holland";
		body="I can't wait to see the parkway after the installation, you guys have been great to work with and come up with great designs.";
		type="commercial";
		
	break;
	

	case 1:
		author="Sandy Hilton-Jacob";
		body="Mr. Morimoto, Mr. Kawanishi, Mr. Takamatsu (the emperor) were very impressed with the landscape, the color, park, etc.  My sincere appreciation to everyone on the Gibbs team for all their efforts to bring this off. Thanks again!";
		type="commercial";
	break;
	
	
	
	case 2:
		author="Mary Kay Murphy";
		body="On behalf of the faculty, staff, and students of Oglethorpe University, I am writing to thank you for the leadership and support which you gave to the design and planting of the perennials and trees on campus. President and Mrs. Donald Stanton join me in thanking you.  With all best regards.";
		type="commercial";
	break;
	
	

case 3:
	default:
		author="Elizabeth Harris";
		body="The Governor's Mansion ground have never looked more beautiful!  The Garden Club of Georgia Board of Directors was here at the Mansion this week and truly raved about the beauty of the grounds.  Thank you for helping to make this possible.";
		type="commercial";
	break;
}




document.write('<p>"'+ body +'"</p>');
document.write('<p>-' + author + '<br />');
/*document.write (''+ title +'</p>');*/