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++] = "<strong>Refreshingly practical... what they said they'd do they did... and with genuine follow up support!</strong> <br />Tony Maher - General Manager<br />Ullmann International"
random_text[number++] = "<strong>Unbiased and independent analysis of our options... (Solutions Breakthrough) supported us in achieving major change.</strong><br />Keith Mitchell - Managing Director<br />Toray"
random_text[number++] = "<strong>Refreshingly practical... what they said they'd do they did... and with genuine follow up support!</strong> <br />Tony Maher - General Manager<br />Ullmann International"
random_text[number++] = "<strong>Unbiased and independent analysis of our options... (Solutions Breakthrough) supported us in achieving major change.</strong><br />Keith Mitchell - Managing Director<br />Toray"
// 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]);

