﻿var quotations = new Array()
quotations[0] = "<blockquote>&quot;He who can reach a child's heart can reach the world's heart.&quot;<cite>- Rudyard Kipling</cite></blockquote>"
quotations[1] = "<blockquote>&quot;It is easier to build strong children than repair broken men.&quot;<cite>- Frederick Douglass</cite>"
quotations[2] = "<blockquote>&quot;If we don't stand up for children, then we don't stand for much!&quot;<cite>- Marian Wright Edleman</cite></blockquote>"
quotations[3] = "<blockquote>&quot;There is no greater miracle than finding a loving home for a child who needs one.&quot;<cite>- Bill Clinton</cite></blockquote>"
quotations[4] = "<blockquote>&quot;No one stands so tall, as when they stoop to help a child.&quot;<cite>- Anonymous</cite></blockquote>"


function display() {
    a = Math.floor(Math.random() * quotations.length);
    document.getElementById('quote').innerHTML = quotations[a];
    setTimeout("display()", 9000);
}
