var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "If your seizures have not been controlled after 3 months of care by a primary care provider further intervention is recommended. Find an epilepsy specialist.";
Quotation[1] = "If you are seeing a general neurologist and are still having uncontrolled seizures after one-year, ask for a referral to a specialized epilepsy center. See an epileptologist.";
Quotation[2] = "NAEC estimates that only 1 out of every 2,000 physicians in the United States is a specialist in epilepsy. Find an epileptologist at an epilepsy center near you.";
Quotation[3] = "The goal of epilepsy treatment is no seizures and no side effects!";
Quotation[4] = "Make the expert choice. Call a specialized epilepsy center near you.";
Quotation[5] = "Even if your seizures cannot be completely controlled, an epilepsy center can help improve the quality of your life.";
Quotation[6] = "Spend less time and money. If your treatment isn’t working consult an epilepsy specialist at a specialized epilepsy center near you.";
Quotation[7] = "You haven’t tried everything until you’ve tried an epilepsy center.";
Quotation[8] = "If seizures do not respond to treatment, either the diagnosis is wrong, the treatment is wrong or the physician and the patient are not communicating. Seek another opinion.";
Quotation[9] = "Take charge of your epilepsy. Go directly to the experts. Consult an epileptologist.";
Quotation[10] = "People with even one or two seizures a year are more likely to be depressed, unable to drive and often lose their sense of independence making it more difficult to obtain employment and educational opportunities.";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
