/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 6;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title=" - General Directory of Catechesis";
body="The Church transmits the faith in an active way; it sows it in peoples' hearts to nourish their profoundest experience of life.";
}

if (quotes==1) {
title=" - John O'Donohue";
body="All holiness is about learning to hear the voice of your own soul... From the beginning, silence and sound have been sisters.";
}

if (quotes==2) {
title=" - General Directory of Catechesis";
body="The definitive aim of catecheis is to put people not only in touch, but also in communion and intimacy, with Jesus Christ.";
}

if (quotes==3) {
title=" - General Directory for Catechesis";
body="Jesus gave careful attention to the formation of the disciples whom he sent on mission. He presented himself to them as the only teacher and, at the same time, a patient and faithful friend.";
}

if (quotes==4) {
title=" - General Directory of Catechesis";
body="The Church transmits the faith which it lives.";
}

if (quotes==5) {
title=" - Cardinal Hume";
body="In the family... a Christian education is more witnessed to than taught; more occasional than systematic, more ongoing than structured.";
}

document.write('<div align=left>');
document.write('<em>'+ body +'</em>');
document.write('<strong>' + title + '</strong><br>');
document.write('</div>');
