var text = new Array();
    text[0] = "3 JOHN 1.2 - Dear friend, I hope all is well with you and that you are as healthy in body as you are strong in spirit.";
    text[1] = "JOHN 3:16 - For God loved the world so much that he gave his one and only Son, so that everyone who believes in him will not perish but have eternal life.";
    text[2] = "MARK 16:15 - And then he told them, 'Go into all the world and preach the Good News to everyone.'";
    text[3] = "PROVERBS 22:9 - Blessed are those who are generous,because they feed the poor.";
    text[4] = "ROMANS 12:9 - Don’t just pretend to love others. Really love them. Hate what is wrong. Hold tightly to what is good!";
    text[5] = "EPHESIANS 4:32 - Instead, be kind to each other, tenderhearted, forgiving one another, just as God through Christ has forgiven you.";
    text[6] = "MATTHEW 7:12 - Do to others whatever you would like them to do to you. This is the essence of all that is taught in the law and the prophets.";
    text[7] = "JOHN 3:16 - For God loved the world so much that he gave his one and only Son, so that everyone who believes in him will not perish but have eternal life.";
    text[8] = "MATTHEW 6:33 - Seek the Kingdom of God above all else, and live righteously, and he will give you everything you need";
    text[9] = "MATTHEWS 25:40 - And the King will say, ‘I tell you the truth, when you did it to one of the least of these my brothers and sisters, you were doing it to me!’";
    text[10] = "GALATIANS 2:10 - Their only suggestion was that we keep on helping the poor, which I have always been eager to do.";
    text[11] = "MATTHEW 11:28 - Then Jesus said, “Come to me, all of you who are weary and carry heavy burdens, and I will give you rest.";
    text[12] = "";

function weiter() {
var memo = document.createTextNode(text[Math.round(Math.random()*11)]);
         document.getElementById ("sprueche").replaceChild (memo, document.getElementById ("sprueche").firstChild);
         setTimeout ("weiter ();",30000);
}
