/* This script and many more are available free online at
http://www.codeave.com */

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++] = "<b>In celebration of our 20th anniversary, Metropolitan is offering 20% off of quoted prices. New customers only.</b>"
// random_text[number++] = "\"Add slogan here.\"<br /><br /><span class='quote-name'>-- Name, Restaurant</span>"
// random_text[number++] = "\"Metropolitan Duct and Flue has provided top-notch services for all of our duct cleaning needs. I recommend them wholeheartedly.\"<br /><br /><span class='quote-name'>-- John Carlson, Tony &amp; Joe's</span>"
// random_text[number++] = "\"Metropolitan Duct and Flue is fabulous.\"<br /><br /><span class='quote-name'>-- Jane Smith, Gordon Biersch</span>"
// random_text[number++] = "\"I recommend them to all my associates.\"<br /><br /><span class='quote-name'>-- Doug Jones, Tabard Inn</span>"
// random_text[number++] = "<font color='#00FF00'>Random testimonial</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]);