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 color='#B31B34'><strong>Don’t get overwhelmed by ALL the Magic Disney has to offer. Call Magic Itineraries.</strong></font>"
random_text[number++] = "<font color='#B31B34'><strong>We do all the work. You have all the FUN! Call or e-mail us!</strong></font>"
random_text[number++] = "<font color='#B31B34'><strong>Call Magic Itineraries today, to get the most MAGIC that Disney has to offer.</strong></font>"
random_text[number++] = "<font color='#B31B34'><strong>To plan your vacation of a lifetime, Call Magic Itineraries.</strong></font>"
random_text[number++] = "<font color='#B31B34'><strong>Dreams really do come true! Call Magic Itineraries - Your Authorized Disney Vacation Planner.</strong></font>"
random_text[number++] = "<font color='#B31B34'><strong>For more information, call Magic Itineraries, your Authorized Disney Vacation Planner.</strong></font>"
random_text[number++] = "<font color='#B31B34'><strong>We'll be happy to answer all your questions and concerns. Give us a call or e-mail today.</strong></font>"
random_text[number++] = "<font color='#B31B34'><strong>Don't be overwhelmed! Call us!</strong></font>"
random_text[number++] = "<font color='#B31B34'><strong>For more details, e-mail or call Magic Itineraries today.</strong></font>"
random_text[number++] = "<font color='#B31B34'><strong>Are any of these activities for you? We'll help you decide!</strong></font>"
random_text[number++] = "<font color='#B31B34'><strong>Start the MAGIC with Magic Itineraries</strong></font>"
random_text[number++] = "<font color='#B31B34'><strong>The Magic never ends. It starts with Magic Itineraries</strong></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]);