// ==============================================
// 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] = "Speak Out on Education Issues Take action.
PD Online From assessment to classroom management, ASCD has the courses you need. More
Institutional PLUS! Add books to your Institutional Membership. More
Institutional PLUS! Add books to your Institutional Membership. More
Whole Child Video ";
Quotation[10] = "Meet Deirdra Grode
Outstanding Young Educator Award Nominate a colleague. More";
Quotation[11] = "Outstanding Young Educator Award Nominate a Colleague More
Healthy School Communities Make the connection between healthy school environments and positive student outcomes. More
";
// ======================================
// 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();