<!--



function text() {
};

text = new text();
number = 0;

// textArray
text[number++] = "&quot;We are very pleased, they do excellent work. We have five acres and they came and did an emergency job for us. They are very good.&quot;"


text[number++] = "&quot;Jason was very professional and accommodating. I love how the hill turned out and I have already recommended him to some of my neighbors.&quot;" 

text[number++] = "&quot;He was great! He called us right after our request was sent in, had the most competitive price, great pictures of previous work, and followed up with a courtesy call.&quot;"

text[number++] = "&quot;I will recommend him to anyone I know who needs work from an honest contractor.&quot;"


text[number++] = "&quot;Jason was very polite, professional and easy to work with. His team did a great job on my backyard. They were able to complete the work in the time and price quoted to me.&quot;"

text[number++] = "&quot;When completed, the area was swept and neatly picked up, which was especially important because I live in a townhouse community. I would definitely recommend him to my family and friends.&quot;"







// keep adding items here...

increment = Math.floor(Math.random() * number);

document.write(text[increment]);

//-->