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 class='quote'>Working with Kort Builders was a pleasure.  Professional and reliable, yet still competitive in pricing, they are the preferred builder in Indiana for Massage Envy.</p><p class='source'><img src='/logo_massage.gif' alt='' /><b>Charlie Marsh</b><br />Massage Envy</p>";
random_text[number++] = "<p class='quote'>When we encounter a construction problem they're great at offering alternative solutions to fix the problem.  I would highly recommend Kort Builders to anyone looking to a quality construction partners.</p><p class='source'><img src='/logo_ossip.gif' alt='' /><b>Doug Martin, President</b><br />Ossip Optometry</p>";
random_text[number++] = "<p class='quote'>Kort Builders comes through when we require an aggressive schedule.  They work well with our Retail staff and our vendors and do a clean, quality job.</p><p class='source'><img src='/logo_verizon.gif' alt='' /><b>Paul Cavanaugh, Manager Retail Construction</b><br />Verizon Wireless</p>";
random_text[number++] = "<p class='quote'>Thanks to Kort Builders we have beautiful atmospheres to offer our guest.</p><p class='source'><img src='/logo_melting.gif' alt='' /><b>Bennet Ackerman, President</b><br />Melting Pot and Performance Restaurant Management</p>";
random_text[number++] = "<p class='quote'>Kort was attentive to all our needs and followed-up on all issues arising after the project was completed. We plan on using Kort for future projects given the success we have had with them.</p><p class='source'><img src='/logo_crown.gif' alt='' /><b>Jon Sinder, President</b><br />Crown Liquors</p>";
// 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]);