// JavaScript Document

/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 5;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
body="1 in 10 children have a speech or language difficulty.";
}

if (quotes==1) {
body="Most children have their first word by the time they are 12 months old.";
}

if (quotes==2) {
body="Many children can combine words into 2-word phrases by the time they are 18 months to 2 years of age.";
}

if (quotes==3) {
body="5% of children stutter, but only 1% continue to stutter into adulthood.";
}

if (quotes==4) {
body="A chimpanzee named Koko has a vocabulary of 500 words she can speak using American Sign Language. The average English-speaker has a 20,000 word vocabulary.";
}


document.write('<div id=\"speech\">');
document.write('<p class=\"speechfact\">'+ body +'</p>');
// document.write('<p class="testimonial-by">' + title + '</p>');
document.write('</div>');