//store the quotations in arrays
quotes = new Array(21);
authors = new Array(21);
quotes[0] = "Life is fragile, handle with prayer.";
authors[0] = "Anon.";
quotes[1] = "Every Saint has a past, every sinner has a future.";
authors[1] = "Anon.";
quotes[2] = "Faith is a journey not a destination.";
authors[2] = "Anon.";
quotes[3] = "Seven days without prayer makes one weak.";
authors[3] = "Anon.";
quotes[4] = "Life is short pray hard.";
authors[4] = "Anon";
quotes[5] = "Faith is not believieving that God can, but that He WILL.";
authors[5] = "Anon";
quotes[6] = "The heart is happiest when it beats for others.";
authors[6] = "Anon.";
quotes[7] = "God grant me the serenity to accept the things I cannot change; Courage to change the things I can; And wisdom to know the difference..";
authors[7] = "Reinhold Niebuhr.";
quotes[8] = "We must present outstretched, friendly hands, without hatred, without rancour - even as we show great determination, never wavering in the defence of truth and justice. Because we know that seeds are not sown with clenched fists. To sow we must open our hands.";
authors[8] = "Adolpho Perez Esquivel, Nobel Peace Prize winner.";
quotes[9] = "I look forward to the day when schools and hospitals have all the money they need, and the airforce has to hold a jumble sale to buy a fighter jet.";
authors[9] = "Peace movement postcard.";
quotes[10] = "Peace is not merely the absence of conflict. It involves the establishment of justice and mutual respect among people. It involves total well-being and right relationships within the community.";
authors[10] = "'Rebuilding Sierra Leone' The Council of Churches in Sierra Leone.";
quotes[11] = "Words are like diamonds. Polish them too much, and all you get are pebbles.";
authors[11] = "Bryce Courtenay.";
quotes[12] = "One measure of leadership is the calibre of people who choose to follow you..";
authors[12] = "Dennis Peer, National Enquirer";
quotes[13] = "Where there is great love, there are always miracles.";
authors[13] = "Will Cather, Death Comes for the Archbishop.";
quotes[14] = "Forgiveness is a gift of high value. Yet its cost is nothing.";
authors[14] = "Betty Smith, A Tree Grows in Brooklyn.";
quotes[15] = "Listening, not imitation, may be the sincerest form of flattery.";
authors[15] = "Joyce Brothers";
quotes[16] = "Anger is a wind that blows out the lamp of the mind.";
authors[16] = "Robert Ingersoll.";
quotes[17] = "Sports do not build character. They reveal it.";
authors[17] = "Heywood Hale Broun.";
quotes[18] = "I heard Daddy telling Mummy that, when this baby arrives, they're going to call it Quits.";
authors[18] = "M.R. in the Sun, London.";
quotes[19] = "I had some words with my wife - and she had some paragraphs with me!";
authors[19] = "Hoest, King Features.";
quotes[20] = "Everybody needs a hug, it changes your metabolism.";
authors[20] = "Leo Buscaglia.";


//calculate a random index
index = Math.floor(Math.random() * quotes.length);
