// RANDOM TEXT
function random_text()
{};
var random_text = new random_text();
var number = 0;

random_text[number++] = "Some hospice patients go to work, drive their cars and maintain their daily lifestyles if symptoms are well controlled."
random_text[number++] = "Most of our patients receive care in their homes, although we also provide care at Gosnell Memorial Hospice House and other facilities."
random_text[number++] = "Hospice of Southern Maine provides care to all patients regardless of ability to pay."
random_text[number++] = "You can choose to be resuscitated and still receive hospice care - a do not resuscitate (DNR) order is not required."
random_text[number++] = "Your physician can continue to direct your care, working with hospice staff who provide ongoing services."
random_text[number++] = "Hospice is for anyone with a life-limiting illness - regardless of age."
random_text[number++] = "We have over 140 dedicated community volunteers with over 40 hours of initial formal training."
random_text[number++] = "Hospice of Southern Maine is a nonprofit, free-standing Medicare-certified organization."
random_text[number++] = "Gosnell Memorial House is the only inpatient facility in Southern Maine solely dedicated to providing end-of life care."


var random_number = Math.floor(Math.random() * number);

document.write(random_text[random_number]);