// Copyright 2000-2004, DataCom of Duluth
  
// Setup
var theQuote = new Array()
theQuote[0] = "<b>Did you know?</b> The first computer mouse was made of wood. Today, Chester Creek's Tiny Mice &quot;contain no slivers&quot; and are tough enough to stand up to the harshest play."
theQuote[1] = "<b>Did you know?</b> The word, &quot;typewriter&quot; is the only 10-letter English word you can spell with the top row of keys on a keyboard."
theQuote[2] = "<b>Did you know?</b> Chester Creek's colorful, large-key KinderBoard won the award, &quot;Best Pick of 2007&quot; by Scholastic Teacher's Instructor Magazine!"
theQuote[3] = "<b>Did you know?</b> Nowhere are the words &quot;and a little child shall lead them&quot; more accurate then when a family buys a computer."
theQuote[4] = "<b>Did you know?</b> The name &quot;Google&quot; was a result of a spelling mistake. The founders intended to write &quot;Googol&quot;."
theQuote[5] = "<b>Did you know?</b> Chester Creek is the leader in innovative keyboards and mice for all ages and abilities."
theQuote[6] = "<b>Did you know?</b> ClassroomTyping.com is a one-of-a-kind, color-coordinated online typing system that encourages keyboarding success, enhances learning, and matches the Chester Creek LessonBoard. Visit: <a href=http://www.classroomtyping.com/>classroomtyping.com</a>."
theQuote[7] = "<b>Did you know?</b> In some situations, there are more germs on a computer keyboard than in a public restroom. Order Chester Creek keyboard seals to use with the KinderBoard. They fit securely and don't interfere with typing, and they can be cleaned with disinfectant wipes."
theQuote[8] = "<b>Did you know?</b> Chester Creek is doing our part to contribute to the global improvement of our environment by adopting stringent RoHS standards in the manufacture of keyboards and mice."
theQuote[9] = "<b>Did you know?</b> Nearly all large-key keyboards from Chester Creek are available in most country formats and are RoHS compliant? But why is RoHS compliance important? These restricted materials are hazardous to the environment and dangerous to people."


//DO NOT EDIT BELOW THIS LINE

//Choose Quote
function picQuote() {
	var p = theQuote.length;
	var whichQuote = Math.round(Math.random()*(p-1));
	document.write(theQuote[whichQuote]);
}

