var Quotation=new Array() 

Quotation[0] = "The goal of education is not to increase the amount of knowledge, but to create possibilities for a child to invent and discover. - Jean Piaget";
Quotation[1] = "Teaching means creating situations where structure can be discovered. - Jean Piaget ";
Quotation[2] = "The whole art of teaching is only the art of awakening the natural curiosity of young minds for the purpose of satisfying it afterwards - Anatole France";
Quotation[3] = "Creativity is a type of learning process where the teacher and pupil are located in the same individual. - Arthur Koestler";
Quotation[4] = "The aim of education should be to teach us rather how to think, than what to think - rather to improve our minds, so as to enable us to think for ourselves. - Bill Beattie";
Quotation[5] = "We may wish to set up conditions of learning which make for uniqueness, for self-direction, and for self-initiated learning. - Carl Rogers";
Quotation[6] = "Stress is laid on the pleasure of becoming an educated person, the enormous interest it adds to life. - Edith Hamilton";
Quotation[7] = "To be able to be caught up into the world of thought -- that is to be educated. - Edith Hamilton";
Quotation[8] = "Education is a social process. Education is growth... Education is life itself. - John Dewey";
Quotation[9] = "Theories and goals of education don't matter a whit if you don't consider your students to be human beings. - Lou Ann Walker";
Quotation[10] = "We have a hunger of the mind which asks for knowledge of all around us, and the more we gain, the more is our desire; the more we see, the more we are capable of seeing. - Maria Mitchell";
Quotation[11] = "Study as if you were going to live forever; live as if you were going to die tomorrow. - Maria Mitchell";
Quotation[12] = "A master can tell you what he expects of you. A teacher, though, awakens your own expectations. - Patricia Neal";
Quotation[13] = "Education is for improving the lives of others and for leaving your community and world better than you found it. - Marian Wright Edelman";
Quotation[14] = "Education is not the filling of a pail, but the lighting of a fire. - William Butler Yeats";

// ======================================
// 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]);
}
