// ==============================================
// 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] = "<DIV class=\"quotation\">\"The best, most important education publication in the country.\"<BR>Jonathan Kozol</div>";
Quotation[1] = "<DIV class=\"quotation\">\"Terrific, Dynamite. Very, Very useful.\"</I><BR>Jonathan Kozol</div>";
Quotation[2] = "<DIV class=\"quotation\">\"Some of the freshest insights into schools available.\"<BR>Linda Darling Hammond</div>";
Quotation[3] = "<div class=\"quotation\">\"Tells it like it is.\"<BR>Linda Darling Hammond</div>";
Quotation[4] = "<DIV class=\"quotation\">\"A teacher's close friend\"<BR>Michele Forman, National Teacher of the Year</div>";
Quotation[5] = "<DIV class=\"quotation\">\"Lively, tough-minded\"<BR>Deborah Meier</DIV>";
Quotation[6] = "<DIV class=\"quotation\">\"Motivating &amp; Inspirational\"<BR>Jill Moss Greenberg</DIV>";
Quotation[7] = "<DIV class=\"quotation\">\"Exactly what we need\"<BR>Luis Rodriguez</DIV>";
Quotation[8] = "<DIV class=\"quotation\">\"A powerful resource for classroom teachers\"<BR>Sonia Nieto</DIV>";
Quotation[9] = "<DIV class=\"quotation\">\"Made educational history\"<BR>Howard Zinn</DIV>";
Quotation[10] = "<DIV class=\"quotation\">\"A rich resource for educators\"<BR>Harvard Educational Review</DIV>";
Quotation[11] = "<DIV class=\"quotation\">\"The best social justice curriculum available\"<br>Gloria Ladson-Billings</div>";
// ======================================
// 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();
