<!--
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++] = "&quot;Sean, I just wanted to express my gratitude to you. Dave and I both firmly believe that the acupuncture treatments were the key to our conceiving and part of a very healthy pregnancy. Thank you for helping us bring Cassandra in to our lives.&quot; <b>Stephanie and David Pyle.</b>"
random_text[number++] = "&quot;I could go on forever about how much I like and benefit from Sean’s acupuncture and herbal treatments. I always get exactly what I need. When I first started getting acupuncture I was exhausted, depleted and pretty much a wreck. I am much less stressed out and feel better in every aspect of my life thanks to Sean. Sean is very calm, gentle and thoughtful in his approach to my treatments.&quot;  <b>Marie W., NH</b>"
random_text[number++] = "&quot;Dr. Doherty you were so helpful in guiding me in the right direction regarding food and supplements after my diagnosis with Celiac Disease. All my symptoms are now gone, you have helped me immensely, I am forever grateful for your help.&quot; <b>Lone Andersen, Denmark</b>"
random_text[number++] = "&quot;I had been told that Dr. Doherty saved lives and she is indeed a lifesaver. I would not be where I am without her help. It is so nice to have the guidance of someone who looks at the whole picture and genuinely cares about your wellbeing. I want to thank you again wholeheartedly.&quot; <b>Donna Raffia, CT.</b>"
// 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]);
-->