function writeTestimonial(){

	var testimonials = [
		{
      quote:		"I am pleased with the end to end service and product provided by All-Safe. I would recommend them to anyone shopping for a removable pool barrier.",
      name:		  "Jose",
      location:	"Anaheim Hills, CA"
		},{
      quote:		"Installation crew was very nice and helpful. I was glad they made sure I was comfortable and confident with understanding the removal and replacement of the net before they left.",
      name:		  "Ben",
      location:	"Corona, CA"
		},{
      quote:		"I can sleep better at night now knowing the pool is secure...it 'feels safe.'",
      name:		  "Rose",
      location:	"NJ"
		},{      
      quote:		"Great fence, great job, would recommend to everyone.",
      name:		  "Mark",
      location:	"Riverside, CA"
		},{      
      quote:		"The brown color looks so nice.  I'm not having a 'panic' attack now when my older daughter (age 6) wants to go out to play in the back yard.",
      name:		  "Cathy",
      location:	"NJ"
		},{      
      quote:		"What a fantastic hard working crew and great customer service. The Safety Net looks so good! My wife and I could not be happier!",
      name:		  "Steven",
      location:	"Moreno Valley, CA"
		},{      
      quote:		"The entire process was great- called and completed in four working days! Your personnel are highly knowledgeable and professional.",
      name:		  "Jean",
      location:	"Corona, CA"
		},{      
      quote:		"The installers were very nice and very efficient. They did an excellent job.",
      name:		  "Nancy",
      location:	"Villa Park, CA"
		},{      
      quote:		"I have recommended your company many times!",
      name:		  "Fran",
      location:	"Fontana, CA"
		},{      
      quote:		"Everyone was great! Have recommended you to friends.",
      name:		  "Dana",
      location:	"Seal Beach, CA"
		},{      
      quote:		"An all-around great experience (rare for construction work).",
      name:		  "Tessa",
      location:	"Corona, CA"
		},{      
      quote:		"We were very impressed with your representative and the installation crew. Everyone was very friendly and professional. Thank You.",
      name:		  "James",
      location:	"Orange, CA"
		},{      
      quote:		"Thank you All-Safe for an excellent product as well as great employees. We made an excellent choice in your company and product, to protect our grandchildren.",
      name:		  "Sue",
      location:	"Mission Viejo, CA"
		},{      
      quote:		"Crew was very polite, professional, helpful, and explained setup and instructions. Excellent job!",
      name:		  "Mary",
      location:	"Anaheim, CA"
		},{      
      quote:		"I wanted to thank you for your speedy and efficient service. It just makes much happier that we purchased a pool net from All-Safe. I will recommend you to anyone who might need your services.",
      name:		  "Claudia",
      location:	"Orange, CA"
		},{      
      quote:		"Thank you so much for your kindness, dedication and commitment to service. Our family is so grateful to find a professional individual who will go above and beyond the call of duty. I pray more people will recognize the need for fences.",
      name:		  "The Morans",
      location:	"Pensacola, FL"
		}
	];
	
	var t = testimonials[Math.ceil(Math.random()*testimonials.length)-1];

	var $html = [
		'<div id="testimonial"><p>&ldquo;',
			t.quote,
		'&rdquo;</p><p>&ndash;',
			t.name,
		',<br>',
			t.location,
		'</p></div>'
	].join('');

	document.write($html);
}