// RANDOM TEXT
function random_text()
{};
var random_text = new random_text();
var number = 0;

random_text[number++] = "<h1 class=testimonialhead>Your service is superior...</h1><p class=testimonialbody>Thank you very much for the loan of this GSM cell phone. Your service is superior to all other companies we have worked with over the years and we'll be using you in the future.</p><p class=testimonialsignature>--T.M.<br>Looksmart, Ltd. </p>"
random_text[number++] = "<h1 class=testimonialhead>I can highly recommend the service to others traveling overseas...</h1><p class=testimonialbody>The phone was delivered to me prior to departure, exactly as promised. Using the phone to call back to the U.S. was quick and easy. And I hear from my secretary that the transmission was as clear on her end as it was on mine. I certainly plan to use PlanetFone again in the future, for both business and leisure trips. And I can highly recommend the service to others traveling overseas. </p><p class=testimonialsignature>--B.H.<br>Tustin, CA</p>"

var random_number = Math.floor(Math.random() * number);

document.write(random_text[random_number]);
