quotes = new Array(12);
authors = new Array(12);
quotes[0] = "Are you tolerant of other people's opinions?";
authors[0] = "From Year 10 Students at The Friends' School, Hobart, 2008";
quotes[1] = "How do you expect to look eye to eye with someone, if you are looking down on them?";
authors[1] = "From Year 10 Students at The Friends' School, Hobart, 2008";
quotes[2] = "Do we treat people in a way that we would want to be treated?";
authors[2] = "From Year 10 Students at The Friends' School, Hobart, 2008";
quotes[3] = "A simple lifestyle freely chosen is a source of strength";
authors[3] = "Advices and Queries No.41, Britain Yearly Meeting";
quotes[4] = "We utterly deny all outward wars and strife and fighting with outward weapons, for any end or under any pretence whatsoever'";
authors[4] = "From the first Quaker Peace Testimony, issued to Charles II In 1660";
quotes[5] = "Walk cheerfully over the world answering that of God in every one.";
authors[5] = "George Fox, the first Quaker preacher, 1656";
quotes[6]="Take heed, dear Friends, to the promptings of love and truth in your hearts.";
authors[6]="From Australian Advices and Queries no. 1.";
quotes[7]="Can we all as Australians work towards living together as equals, with mutual understanding and respect?";
authors[7]="From  Australian Advices and Queries no. 18.";
quotes[8]="Live adventurously. When choices arise, do you take the way that offers the fullest opportunity for the use of your gifts in the service of God and the community?";
authors[8]="From  Australian Advices and Queries no. 29.";
quotes[9]="In order to secure the survival of all, including ourselves, are you prepared to change your ideas about who you are in relation to your environment and every living thing in it?";
authors[9]="From  Australian Advices and Queries no. 44.";
quotes[10]= "Do you try to live in harmony with the land, knowing that you are part of it? Do you protect and husband its water and other resources?";
authors[10]="From  Australian Advices and Queries no. 46.";
quotes[11]="We live in a land of unique grandeur and beauty, harsh and majestic, but at the same time fragile. Have you discovered its wonder and mystery, and has this awareness quickened your spiritual insight and helped you to recognise that of God in everyday life?";
authors[11]="From  Australian Advices and Queries no. 47.";

index = Math.floor(Math.random() * quotes.length);

document.write("<DL>\n");
document.write("<DT style=\"font-family:arial; font-size:14px; font-weight:bold; font-style:italic\">" + "\"" + quotes[index] + "\"\n");
if (index <3)
{
document.write("<DD style=\"font-size:10px\">" + "-- From Year 10 Students at " + "<a href=\"http://www.friends.tas.edu.au\">The friends' School, Hobart</a>" + ", 2008" + "\n");
}
else
document.write("<DD style=\"font-size:10px\">" + "-- " + authors[index] + "\n");
document.write("</DL>\n");

