
// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

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] ="tooth decay is the #1 infectious disease in U.S. children"; 
 Quotation[1] = "children who do not drink water with fluoride may increase their risk of getting cavities"; 
 Quotation[2] = "every year 9,000 people die from cancer of the mouth"; 
 Quotation[3] = "dental disease can increase your risk of heart disease"; 
 Quotation[4] = "dental disease is an infection in the mouth. it can spread to other parts of your body and keep you from being healthy"; 
 Quotation[5] = "every hour of every day, someone dies of oral cancer in the U.S. "; 
 Quotation[5] = "oral cancer is often highly curable if diagnosed and treated in the early stages"; 
 Quotation[6] = "visiting your dentist for regular check ups and avoiding tobacco are key factors in preventing oral cancer"; 
 Quotation[7] = "gum disease is one of the main causes of tooth loss in adults and has also been linked to heart disease and strokes"; 
 Quotation[8] = "gingivitis can be treated and reversed if diagnosed in the early stage"; 
 Quotation[9] = "periodontitis is a more serious and advanced stage of gum disease which includes bone loss"; 
 Quotation[10] = "regular dental check ups can prevent cavities, root canals, gum disease, oral cancer and other dental conditions"; 
 Quotation[11] = "when you brush your teeth properly, at least twice a day, you are removing the plaque that causes cavities"; 
 Quotation[12] = "plaque is the soft and sticky substance that accumulates on the teeth from food debris and bacteria"; 
 Quotation[13] = "flossing daily will remove the plaque from in between the teeth that the toothbrush cannot reach.  "; 
 Quotation[14] = "removing plaque from your teeth helps prevent gum disease"; 
 Quotation[15] = "about 85% of people with persistent bad breath have a dental condition that is to blame"; 
 Quotation[16] = "brushing your teeth and tongue twice a day can greatly reduce and possibly eliminate bad breath"; 
 Quotation[17] = "a root canal is usually not painful and can be as painless as having a filling"; 
 Quotation[18] = "change your toothbrush approximately every 3 months because bacteria can harbor in the bristles"; 
 Quotation[19] = "rinse your toothbrush out with hot water after every use and change it after you have been sick"; 
 Quotation[20] = "gum disease has been linked to low birth weight babies"; 
 Quotation[21] = "there are 32 permanent teeth in the adult mouth"; 
 Quotation[22] = "there are 20 primary teeth in a child's mouth"; 
 Quotation[23] = "children's teeth are identified by the letters A through T and adult teeth are identified by numbers 1 through 32"; 
 Quotation[24] = "32% of Americans cite bad breath as the least attractive trait of their co-workers"; 
 Quotation[25] = "38.5 = the total days an average American spends brushing teeth over a lifetime"; 
 Quotation[26] = "more people use blue toothbrushes than red ones"; 
 Quotation[27] = "smokers remain 3 times more likely than non-smokers to lose all their teeth"; 
 Quotation[28] = "like fingerprints, everyone's tongue print is different"; 
 Quotation[29] = "the average woman smiles about 62 times a day! A man only 8!"; 
 Quotation[30] = "more than 51 million hours of school are lost each year by children due to dental related illnesses"; 
 Quotation[31] = "Americans spend $2 billion a year on dental products--toothpaste, mouthwash, and dental floss"; 
 Quotation[32] = "50% of Americans do not receive regular oral health care"; 
 Quotation[33] = "in 1994 a prison inmate in West Virginia braided floss into a rope, scaled the wall and escaped"; 
 Quotation[34] = "33% of Americans have untreated tooth decay"; 
 Quotation[35] = "78% of Americans have had at least 1 cavity by age 17"; 
 Quotation[36] = "Academy of General Dentistry recommends brushing for 2-3 minutes twice a day.  The average person only brushes for 45 to 70 seconds"; 
 Quotation[37] = "more than 300 types of bacteria make up dental plaque";
 




// ======================================
// 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();

