/* 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 = 6;
var quote = Math.floor (num_of_quotes * Math.random());
var author = "";
var body = "";
var type = "";

switch(quote){

	
	case 0:
		author="Johnnie Jefts";
		body="Our landscape project is turning out just great.  We are pleased with everything so far.  I can't see any kids play area, the additional plants on the bank already improve the view and the back garden is beautiful. We can't wait until Spring to see all our new plants leaf out!";
		type="residential";
	break;
	
	
	
	case 1:
		author="Glenn W. Summerlin";
		body="I thought you would be interested to know that our yard has been named \"Yard of the Month\" by the Cambridge Park Civic Association.  Since the Cambridge Park subdivision encompasses a rather large number of homes (some of which have very attractive yards) this is no small accomplishment. We value the working relationship we've enjoyed with the Gibbs Landscape Company's employees for the past two years and it's my hope that we'll be working with them for a l-o-n-g time to come.";
		type="residential";
	break;
	
	
	
	case 2:
		author="Ann Cousins";
		body="I just wanted to let you know that we survived the party for Vice President Bush last Friday night and it was a great success!  The grounds looked absolutely wonderful thanks to all the Gibbs people. Once again my thanks to you and your staff for their hard work and a job well done!";
		type="residential";
	break;
	
	case 3:
		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="residential";
	break;
	
	case 4:
		author="Celeste Kerber";
		body="We are very happy with the job the guys did.  I just wanted to let you know how excited we were.  The feel of the backyard is so different.  We have spent so much more time out there already.";
		type="residential";
	break;
	
	case 5:
		author="James A. Eidson";
		body="We cannot be more pleased with the outcome as it is not only aesthetically pleasing, but most importantly, very functional.  I am sure my family and I will enjoy it for years to come.";
		type="residential";
	break;
	
}




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