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++] = "<font size='2px' color='#000000'>&quot;I couldn't believe how easy the transition was. What an amazing savings!&quot; <br /><br /> Guy Austrian - CEO GAPC </font>"


random_text[number++] = "<font size='2px' color='#000000'>&quot;BestWeb provides us with excellent service, and superior customer and technical support. They consistantly go the extra mile.&quot;<br /><br /> Alex Zagajewski - Putnam ARC  </font>"


random_text[number++] = "<font size='2px' color='#000000'>&quot;What we have now is better than anything we've ever had before and reaching this point is a major milestone.&quot;<br /><br /> Bruce Stronthenke - Director of Technology, Carmel Central School District   </font>"


random_text[number++] = "<font size='2px' color='#000000'>&quot;BestWeb's Gig E Fiber Service has proven to be a truly reliable service that brought us light years ahead of the game. &quot;<br /><br /> Renee Ligay - Croton Harmon School District </font>"

random_text[number++] = "<font size='2px' color='#000000'>&quot;From initial consultation to implementation, BestWeb has delivered us a very solid product that has met all of our needs!&quot;<br /><br /> Renee Ligay - Croton Harmon School District </font>"

// 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]);

