﻿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><a href='PDFs/AdultChildrenAlcoholics.pdf' target='blank'>Adult Children of Alcoholics</a></p><p><a href='PDFs/BullyingInTheSchoolSetting.pdf' target='blank'>Bullying in the School Setting</a></p><p><a href='PDFs/CaregivingFromADistance.pdf' target='_blank'>Caregiving from a distance</a></p><p><a href='PDFs/CareForTheCaregiver.pdf' target='blank'>Caring for the Caregiver</a></p><p><a target='_blank' href='PDFs/DepressionNutrition.pdf'>Depression and Nutrition</a></p>"  
random_text[number++] = "<p><a href='PDFs/EmptyNest.pdf' target='blank'>Empty Nest Syndrome</a></p><p><a href='PDFs/RolesAgainstDepression.pdf' target='blank'>The Role of Exercise, Nutrition, and Sleep in the Battle Against Depression</a></p><p><a href='PDFs/HolidayBlues.pdf' target='_blank'>Stop Those Holiday Blues</a></p><p><a href='PDFs/EatingDisorders.pdf' target='blank'>Eating Disorders</a></p><p><a target='_blank' href='PDFs/Dementia.pdf'>Dementia</a></p>" 
random_text[number++] = "<p><a href='PDFs/CareForTheCaregiver.pdf' target='blank'>Caring for the Caregiver</a></p><p><a href='PDFs/ElderAbuse.pdf' target='blank'>Elder Abuse</a></p><p><a href='PDFs/DealingAftermath.pdf' target='_blank'>Dealing with the Aftermath of Traumatic Events</a></p><p><a href='PDFs/Disenfranchised.pdf' target='blank'>Disenfranchised Grief</a></p><p><a target='_blank' href='PDFs/EmptyNest.pdf'>Empty Nest Syndrome</a></p>" 
random_text[number++] = "<p><a href='PDFs/BorderlinePersonalityDisorder.pdf' target='blank'>Borderline Personality Disorder</a></p><p><a href='PDFs/AdultChildrenAlcoholics.pdf' target='blank'>Adult Children of Alcoholics</a></p><p><a href='PDFs/BullyingInTheSchoolSetting.pdf' target='_blank'>Bullying in the School Setting</a></p><p><a href='PDFs/Bullying.pdf' target='blank'>Bullying in the Workplace</a></p><p><a target='_blank' href='PDFs/TenRelationships.pdf'>Ten Tips for Healthy Relationships</a></p>" 
random_text[number++] = "<p><a href='PDFs/Aromatherapy.pdf' target='blank'>Aromatherapy</a></p><p><a href='PDFs/CareForTheCaregiver.pdf' target='blank'>Caring for the Caregiver</a></p><p><a href='PDFs/DepressionNutrition.pdf' target='_blank'>Depression and Nutrition</a></p><p><a href='PDFs/RolesAgainstDepression.pdf' target='blank'>The Roles of Exercise, Nutrition, and Sleep in the Battle Against Depression</a></p><p><a target='_blank' href='PDFs/DealingAftermath.pdf'>Dealing with the Aftermath of Traumatic Events</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]);
-->


