
//store the quotations in arrays
quotes = new Array(25);
authors = new Array(25);
quotes[0] = "How can a young man keep his way pure? By living according to your word. I seek you with all my heart; do not let me stray from your commands. I have hidden your word in my heart that I might not sin against you.";
authors[0] = "Psalm 119 9-11";
quotes[1] = "But grow in the grace and knowledge of our Lord and Savior Jesus Christ. To Him be glory both now and forever! Amen.";
authors[1] = "II Peter 3:18";
quotes[2] = "As the deer pants for streams of water, so my soul pants for you, O God. My soul thirsts for God, the living God. When can I go and meet with God?";
authors[2] = "Psalm 42: 1-2";
quotes[3] = "Do not be anxious about anything, but in everything, by prayer and petition, with thanksgiving, present your requests to God. And the peace of God, which transcends all understanding, will guard your hearts and your minds in Christ Jesus.";
authors[3] = "Philippians 4: 6-7";
quotes[4] = "No temptation has seized you except what is common to man. And God is faithful; He will not let you be tempted beyond what you can bear. But when you are tempted, He will also provide a way out so that you can stand up under it.";
authors[4] = "I Corinthians 10:13";
quotes[5] = "But seek first His Kingdom and His righteousness, and all these things will be given to you as well.";
authors[5] = "Matthew 6:33";
quotes[6] = "Your Word is a lamp to my feet and a light for my path"; 
authors[6] = "Psalm. 119: 105";
quotes[7] = "All Scripture is God-breathed and is useful for teaching, rebuking, correcting and training in righteousness..."; 
authors[7] = "II Timothy 3:16";
quotes[8] = "Do not let this Book of the Law depart from your mouth; meditate on it day and night, so that you may be careful to do everything written in it. Then you will be prosperous and successful."; 
authors[8] = "Joshua 1:8";
quotes[9] = "Like newborn babies, crave pure spiritual milk, so that by it you may grow up in your salvation, now that you have tasted that the Lord is good."; 
authors[9] = "I Peter 2: 2-3";
quotes[10] = "Husbands, love your wives, just as Christ loved the church and gave himself up for her."; 
authors[10] = "Ephesians 5:25";
quotes[11] = "Husbands, in the same way be considerate as you live with your wives, and treat them with respect as the weaker partner and as heirs with you of the gracious gift of life, so that nothing will hinder your prayers."; 
authors[11] = "I Peter 3:7";
quotes[12] = "Fathers, do not exasperate your children; instead, bring them up in the training and instruction of the Lord."; 
authors[12] = "Ephesians 6:4";
quotes[13] = "For even the Son of Man did not come to be served, but to serve, and to give his life as ransom for many."; 
authors[13] = "Mark 10:45";
quotes[14] = "Do nothing out of selfish ambition or vain conceit, but in humility consider others better than yourselves. Each of you should look not only to your own interests, but also to the interests of others."; 
authors[14] = "Phillipians 2:3-4";
quotes[15] = "Therefore,since we are surrounded by such a great cloud of witnesses, let us throw off everything that hinders and the sin that so easily entangles, and let us run with perseverance the race marked out for us."; 
authors[15] = "Hebrews 12:1";
quotes[16] = "Now to each one the manifestation of the Spirit is given for the common good. "; 
authors[16] = "I Corinthians 12:7";
quotes[17] = "I have become all things to all men so that by all possible means I might save some. I do all this for the sake of the gospel, that I may share in its blessings."; 
authors[17] = "I Corinthians 9:22b-23";
quotes[18] = "For all have sinned and fall short of the glory of God."; 
authors[18] = "Romans 3:23";
quotes[19] = "For the wages of sin is death, but the gift of God is eternal life in Christ Jesus our Lord."; 
authors[19] = "Romans 6:23";
quotes[20] = "Whatever you do, work at it with all your heart, as working for the Lord, not for men, since you know that you will receive an inheritance from the Lord as a reward. It is the Lord Christ you are serving."; 
authors[20] = "Colossians 3:23-24";
quotes[21] = "If anyone does not provide for his relatives, and especially for his immediate family, he has denied the faith and is worse than an unbeliever."; 
authors[21] = "I Timothy 5:8";
quotes[22] = "...The prayer of a righteous man is powerful and effective."; 
authors[22] = "James 5:16";
quotes[23] = "And pray in the Spirit on all occasions with all kinds of prayers and request. With this in mind be alert and always keep on praying for all the saints."; 
authors[23] = "Ephesians 6:18";
quotes[24] = "That everyone who believes in Him may have eternal life."; 
authors[24] = "John 3:15";
quotes[25] = "For God so loved the world that he gave his one and only Son, that whoever believes in Him shall not perish but have eternal life."; 
authors[25] = "John 3:16";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("<DD>" + "-- " + authors[index] + "\n");
document.write("</DL>\n");

//done

