//--- Begin Random Spotlight Code </p>
function random_text()
{
	var random_text = new Array();
	// Set the number of text strings to zero to start
	var number = 0;
	// Incremental list of all spotlight html
	random_text[number++] = "<td class=testimonials><div align=center><img src=images/testimonial1.jpg></div>&ldquo;We have truly enjoyed working with Jay.&nbsp; He is really organized and concise and showed us properties that matched our criteria.&nbsp; We would gladly recommend him to others.&rdquo;</td></tr><tr><td><div align=right><strong>- Scott &amp; Heather</strong><br>Chesterfield</div></td>"
	random_text[number++] = "<td class=testimonials><div align=center><img src=images/testimonial2.jpg></div>&ldquo;Jay is a 10 out of 10.  He was always willing to help and answer questions.  He was also readily available when we needed him.&rdquo;</td></tr><tr><td><div align=right><strong>- Kevin &amp; Heather</strong></div></td>"
	random_text[number++] = "<td class=testimonials><div align=center><img src=images/testimonial3.jpg></div>&ldquo;I would definitely use Jay again.  He made the purchase of my home an all around positive experience.&rdquo;</td></tr><tr><td><div align=right><strong>- Allen</strong><br>Ballwin</div></td>"
	random_text[number++] = "<td class=testimonials><div align=center><img src=images/testimonial4.jpg></div>&ldquo;This is our second time using Jay as our realtor.  He is very professional and we would not hesitate to refer him to others.&rdquo;</td></tr><tr><td><div align=right><strong>- Mike &amp; April</strong><br>Chesterfield</div></td>"
	random_text[number++] = "<td class=testimonials><div align=center><img src=images/testimonial5.jpg></div>&ldquo;Jay was great to work with.  He always showed us homes that fit our criteria so we did not waste any of our time.  We love our new home.&rdquo;</td></tr><tr><td><div align=right><strong>- Ryan &amp; Bethany</strong><br>Fenton</div></td>"
	//random_text[number++] = "<td class=testimonials><div align=center><img src=images/testimonial6.jpg></div>&ldquo;Place quote here.&rdquo;</td></tr><tr><td><div align=right><strong>- Joe &amp; Grant</strong><br>St. Louis</div></td>"
	// Create a random number with limits based on the number
	// of possible random text strings
	var random_number = Math.floor(Math.random() * number);
	// Returen the random text to write out to the browser
	//alert(random_text[random_number]);
	return random_text[random_number];
}
//--- End  Random Spotlight Code 