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++] = "<p>&quot;Your personal attention to our specific needs in preparing the property for sale went beyond the norm in every respect. The sale, the asking price, and finally the short period of time the property was on the market actually say it all. We thank you (Bill Bissett)&quot;</p><p align='right'>- Richard &amp; Georgia Pollard, Palm Springs</p>"

random_text[number++] = "<p>&quot;From the time I got my license, I could literally hit the ground running, and I was well-prepared and well-equipped to do so.&quot;</p><p align='right'>- Pacita Dimacali</p>"

//random_text[number++] = "Another Random JavaScript Text #3"
//random_text[number++] = "A Different Random JavaScript Text #4"
//random_text[number++] = "<b>Random JavaScript Text #5</b>"
//random_text[number++] = "<i>Random JavaScript Text #6</i>"
//random_text[number++] = "<font color='#00FF00'>Random JavaScript Text #7</font>"
//random_text[number++] = "<a href='#'>Random JavaScript Text #8</a>"
//random_text[number++] = "<font color='#CC33FF'>Random JavaScript Text #9</font>"
//random_text[number++] = "<font color='#0000FF'>Random JavaScript Text #10</font>"

// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);
