<!--
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><b>Tucker's Story</b></p><p>'My Grandmother had breast cancer - the fact that she had it puts me at a higher risk.  When I felt a lump in my breast, I didn't want to deal with it and prayed that it would just 'go away.'  God didn't make it disappear, but He did send me an angel.'</p><p> <a href='pages.shtml?title=testimonials&nav=testimonials&content=testimonials_tucker'>Read the Full Story</a></p>"
random_text[number++] = "<p><b>Elyce's Story</b></p><p>'We’re a small family, a tight knit bunch, and none of us knew exactly how our lives would change when I was diagnosed, but it’s safe to say that not much has been the same ever since...'</p><p> <a href='pages.shtml?title=testimonials&nav=testimonials&content=testimonials_elyce'>Read the Full Story</a></p>"
random_text[number++] = "<p><b>Victoria's Story</b></p><p>'I have little faith in conventional doctors and THANK THE DEAR LORD each day for bringing Dr. Bowmen & and my other caretakers (Kitty & Sherry) at Harford Holistic Center to me.  Obviously your grant made that possible for me....'</p><p>> <a href='pages.shtml?title=testimonials&nav=testimonials&content=testimonials_victoria'>Read the Full Story</a></p>"
random_text[number++] = "<p><b>Karen's Story</b></p><p>To tell you a little about myself, I'm a 47 year old mother of three and Grandma to 6 one deceased, so my health is important. I am active with my family and my church.</p><p> <a href='pages.shtml?title=testimonials&nav=testimonials&content=testimonials_karen'>Read the Full Story</a></p>"
random_text[number++] = "<p><b>Dena's Story</b></p><p>'My mother's ordeal with breast cancer has affected me greatly in obvious and subtle ways. I now view life as more  precious and to be enjoyed, day by day. We are here on earth for an unspecified amount of time and it should be         continually appreciated. I will always cherish the time I had with my mother...'</p><p> <a href='pages.shtml?title=testimonials&nav=testimonials&content=testimonials_dena'>Read the Full Story</a></p>"
random_text[number++] = "<p><b>Sioux's Story</b></p><p>I have always been fastidious about getting an annual mammogram. Both of my grandmothers had breast cancer - one for the first time around 1949, when technology is not what it is today.</p><p> <a href='pages.shtml?title=testimonials&nav=testimonials&content=testimonials_sioux'>Read the Full Story</a></p>"
random_text[number++] = "<p><b>Michelle's Story</b></p><p>On behalf of my mother and me, I would like to take this opportunity to thank you for your generosity in allowing me the honor to be the recipient of the united Breast Cancer Foundation Audrey B. Mastroianni Scholarship.</p><p> <a href='pages.shtml?title=testimonials&nav=testimonials&content=testimonials_michelle'>Read the Full Story</a></p>"
random_text[number++] = "<p><b>Joann's Story</b></p><p>This was the first time in my life (63 yrs. old) when I found myself without a job - no income and no health insurance. Shortly after, I noticed a 'lump' on my breast. </p><p> <a href='pages.shtml?title=testimonials&nav=testimonials&content=testimonials_joann'>Read the Full Story</a></p>"

// 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]);
-->


