<!--
function get_random(maxNum)
{
  if (Math.random && Math.round)
  {
    var ranNum= Math.round(Math.random()*(maxNum-1));
    ranNum+=1;
    return ranNum;
  }
  else
  {
  today= new Date();
  hours= today.getHours();
  mins=   today.getMinutes();
  secn=  today.getSeconds();
  if (hours==19)
   hours=18;
  var ranNum= (((hours+1)*(mins+1)*secn)%maxNum)+1;
  return ranNum;
  }
}

function getaQuote()
{
 var maxQuotes=9;
 var whichQuote=get_random(maxQuotes);
 whichQuote--;

var quote=new Array(maxQuotes)
   quote[0]="MPACT has been providing services for Missouri families for over 20 years.";
   quote[1]="We offer 13 different trainings, including those specific to Autism, ADHD, Bullying and Transition.";
   quote[2]="We have over 50 Fact Sheets and Sample Letters available on-line.";
   quote[3]="Sign up for our online newsletter to stay current on changes in special education law.";
   quote[4]="Our services are FREE to parents of children with disabilities.";
   quote[5]="A transition plan must be in place for a student by the time they turn 16.";
   quote[6]="We offer, on average, 12 trainings a month statewide.";
   quote[7]="There are more than 35 books, DVDs and CDs for sale online.";
   quote[8]="MPACT relies on input from you to improve our ability to support families in Missouri.";
document.write(quote[whichQuote]);

}

getaQuote();

//-->