// JavaScript Document
// RANDOM TEXT
function random_text()
{};
var random_text = new random_text();
var number = 0;

random_text[number++] = "&quot;He is effective as a surgeon and can successfully correct any ailments. Very good with knee issues.&quot; - <strong>Michelle B.</strong>"
random_text[number++] = "&quot;There was an &quot;old&quot; lady who had a bad knee, She also wore glasses since she could not see. She met a great doctor who gave her good news, Now she has two good legs that she can use! That young lady now has a new knee, I know who she is, that young lady is me! A great big thank you to your staff as well, So kind, so thoughtful - all so swell. Thank you doctor for all you've done, Softball, mud-wrestling here I come.&quot; - <strong>Maryann Rivard</strong>"
random_text[number++] = "&quot;...our rehab time, our hospitalization stay is much shorter.&quot; - <strong>Dr. Renaud discussing Partial Knee Replacement.</strong>"

var random_number = Math.floor(Math.random() * number);

document.write(random_text[random_number]);
