	var tstHideDelay = 5000; 
	var tstFadeInLen = 4000; 
	var tstFadeOutLen = 2500;
	var tstTransDelay = 0;
	var tstIndex = 0;
		
	var tstList = 
	{ 
		"list" : 
		[
			{
				"author": "Mary and John Bello", 
				"comments": "We could not be more satisfied with our outdoor living space designed and built by Cutting Edge. Everyone working on the project was professional, competent and very mindful and respectful of our property as well as our surrounding neighbors' property. We have been so pleased with our finished patio that we continue to add to it and continue to be very pleased with all of the work performed by the wonderful folks at Cutting Edge." 
			},
			{ 
				"author": "Lynn Bondurant", 
				"comments": "Great experience to work with Cutting Edge team. Workers are diligent and care about their work." 
			},
			{ 
				"author": "Chris Higgins", 
				"comments": "I wanted to let you know how very pleased Ralph and I are with the new patio. We keep saying that we couldn't be happier with the way it tunred out. When we bought this house we were thrilled with the yard, but then discovered that a large area never dried out enough to use. Now with the new patio in the area of the soggy ground, it is so much nicer and we have gained so much more usable backyard space. Your team worked as if it were their own patios in their own yards. You really understood what we wanted too, and we especially liked how you reused much of the existing materials which other wise would have been discarded. The curb steps look great and the pergola is beautiful!! It fits perfectly in our bckyard in scal and style, and doesn't block any of our view of the yard and the woods." 
			},
					{ 
				"author": "Jack and Jan Gustin", 
				"comments": "Once again you have given us a unique and beautiful landscape project. We are enjoying it so much. Not only does the entire crew work hard, but we are always impressed with the total communication with everyone. No detail is left undone and nothing is ever forgotten. No one drops the ball in your organization. Once of our neighbors came to see the projet and said You just added significant value to your property. We think so too and are grateful to all of you." 
			}
		]
	};
		
	function tstChange()
	{						
		$("#testimonials").empty();
		
		(tstIndex == tstList.list.length -1) ? tstIndex = 0 : tstIndex++;
		
		var tst = '<p class="testimonial">' + tstList.list[tstIndex].comments + '</p><p class="author">' + tstList.list[tstIndex].author + '</p>';
		
		$("#testimonials").append(tst);
	}
	
	function hideTst()
	{
		$("#testimonials").effect('fade', {}, tstFadeOutLen, showTst);
	}
	
	function showTst()
	{
		tstChange();
		
		setTimeout(
		function()
		{
			$("#testimonials:hidden").removeAttr('style').hide().fadeIn(tstFadeInLen, hideTst);
		}, 
		tstTransDelay);
	}
	
	$(function()
	{
			tstList.list.sort(function() 
			{
				return 0.5 - Math.random();
			});	
			
			tstChange();

			//setTimeout("hideTst()", 5000);
	});
