var quotes = new Array;

quotes[0] = 'Actions are not something we do but who we are.';
quotes[1] = 'Do your best. God will do the rest.';
quotes[2] = 'The main thing is to keep the MAIN THING the main thing.';
quotes[3] = 'The symbol of our Christian faith is a cross, not an easy chair.';
quotes[4] = 'This is the day which the Lord hath made. Let us rejoice...';
quotes[5] = 'Lord, Make me an Instrument of Your peace!';
quotes[6] = 'Let there be peace on earth and let it begin with me!';
quotes[7] = 'What force is more potent than love.';
quotes[8] = 'God\'s help is only a prayer away.';
quotes[9] = 'Life in abundance comes only through great love.';
quotes[10] = 'One may walk over the highest mountain one step at a time.';
quotes[11] = 'Prayer does not require eloquence but earnestness.';
quotes[12] = 'If you walk with Christ, you can\'t run with the world.';
quotes[13] = 'The truth of Christ is the only path to freedom.';
quotes[14] = 'In Christ, God has become like us that we might become like Him.';
quotes[15] = 'God so loved the world that He gave His only begotten Son...';
quotes[16] = '...as for me and my house, we will serve the Lord!';


var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])