var Quotation=new Array()
Quotation[0] = "&quot;To develop a complete mind: study the science of art; study the art of science. Learn how to see. Realize that everything connects to everything else.&quot;<br><p class=alignRight>- Leonardo da Vinci</p>";

Quotation[1] = "&quot;The arts humanize the curriculum while affirming the interconnectedness of all forms of knowing. They are a powerful means to improve general education.&quot;<br><p class=alignRight>- Charles Fowler</p>";

Quotation[2] = "&quot;Education is for improving the lives of others and for leaving your community and world better than you found it.&quot;<br><p class=alignRight>- Marian Wright Edelman</p>";

Quotation[3] = "&quot;When elementary schools include art programs in the curriculum, children do better with math.&quot;<br><p class=alignRight>- Kelly Borsheim</p>";

Quotation[4] = "&quot;The function of education is to teach one to think intensively and to think critically. Intelligence plus character - that is the goal of true education.&quot;<br><p class=alignRight>- Martin Luther King, Jr.</p>";

Quotation[5] = "&quot;If we succeed in giving the love of learning, the learning itself is sure to follow.&quot;<br><p class=alignRight>- John Lubbock</p>";

Quotation[6] = "&quot;Learning is an art, and all students are artists.&quot;<br><p class=alignRight>- Deena Welde Peschek</p>";

Quotation[7] = "&quot;The entire object of true education is to make people not merely do the right things, but enjoy them; not merely be industrious, but love industry; not merely learn, but love knowledge; not merely be pure, but love purity; not merely be just, but hunger and thirst after justice.&quot;<br><p class=alignRight>- John Ruskin</p>";

Quotation[8] = "&quot;Art for kids offers exercise for the right brain, and it shows there are different ways to arrive at a solution to a problem.&quot;<br><p class=alignRight>- Helen Ormiston Simpson</p>";

Quotation[9] = "&quot;The great aim of education is not knowledge but action.&quot;<br><p class=alignRight>- Herbert Spencer</p>";

Quotation[10] = "&quot;Young people who learn the arts do better in every phase of their lives.&quot;<br><p class=alignRight>- Meryl Streep</p>";

Quotation[11] = "&quot;Education is the mother of leadership.&quot;<br><p class=alignRight>- Wendell L. Willkie</p>";

Quotation[12] = "&quot;Education is not the filling of a pail, but the lighting of a fire.&quot;<br><p class=alignRight>- William Butler Yeats</p>";

Quotation[13] = "&quot;Art is literacy of the heart.&quot;<br><p class=alignRight>- Elliot Eisner</p>";

Quotation[14] = "&quot;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.&quot;<br><p class=alignRight>- Maria Mitchell</p>";

Quotation[15] = "&quot;Education is the most powerful weapon which you can use to change the world.&quot;<br><p class=alignRight>- Nelson Mandela</p>";


var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){
	document.write(Quotation[whichQuotation]);
}

