﻿function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of all possible Text
random_text[number++] = "<p>We want you to let your crew know we appreciate the fine job done on the Lake Eagles Parking Lot, Gail and Ollie and his Grading crew and also the paving crew. The Grade was made to drain even though it was less than 1% in some areas, and now these areas drain well. Good traffic control and an over all real good.</p><p><b>Lake Eagles Parking Lot Crew</b></p>"  
random_text[number++] = "<p>Thank you very much for your help.  The parking lot looks great.  IF you ever have asphalt to give away you can always dump some in my back parking lot, seeing as we are so close.  Just Joking!</p><p><b>Gerry Pickler</b></p>"
random_text[number++] = "<p>Thank you for finding ways to get our paving jobs done on schedule or ahead of time.  Even the little finishing touches were done before classes started.  The new lot 33 South expansion had many cars in it at 8am the first day of classes.  Today it is full!  I am confident the students join me in, again, saying thanks!</p><p><b>Melvin D. Remus, P.E.</b></p>"
random_text[number++] = "<p>Yesterday the men coated my drive.  They did an excellent job.  They were very careful not to get the “black stuff” on my freshly painted boards.  I appreciate your attitude.  I’ll be glad to recommend you to friends and neighbors.</p><p><b>Dick Hemming</b></p>"
random_text[number++] = "<p>I would like to compliment John MacLean and his crew for their exceptional work at the Carson City temporary facility.  Not only was the grading and paving done in a very timely manner, the finished product is definitely a quality installation.  Working with the dependable professionals as those at Central Asphalt is certainly a pleasant experience.</p><p><b>Warden Curt Jones<br>Michigan Department of Corrections</b></p>"
random_text[number++] = "<p>I just wanted to send you a note telling you how proud I am of the driveway your people put in at my house yesterday.  I am very pleased with the results.  They took extra time to do everything just right.</p><p><b>Leo Beard<br>Beard Oil Pipeline Supply, Inc.</b></strong>"
// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);
// Write out the random text to the browser
document.write(random_text[random_number]);
-->


