// create a new array and assign text to 6 elements

var texss = new Array();
texss[0] = "Surely goodness and mercy shall follow me all the days of my life: and I will dwell in the house of the Lord for ever.  <br />Psalms 23:6";
texss[1] = "I will praise thee, O Lord my God, with all my heart: and I will glorify thy name for evermore.<br />Psalms 86:12";
texss[2] = "Verily, verily, I say unto you, He that believeth on me hath everlasting life. <br />John 6:47";
texss[3] = "Keep yourselves in the love of God, looking for the mercy of our Lord Jesus Christ unto eternal life. <br />Jude 1:21";
texss[4] = "For the earth shall be filled with the knowledge of the glory of the Lord, as the waters cover the sea.<br />Habakkuk 2:14";
texss[5] = "Heaven and earth shall pass away: but my words shall not pass away.<br />Mark 13:31";  

// get a random integer between 0 and 5

var rand = Math.floor(Math.random() * 6);




// write a layer at z-index 28
document.write("<div id='layer2' style='position:absolute; top:10px; left:40px; width:680px; height:30px; background-color:transparent; z-index:28; border:0px solid red; font-family: sans-serif; font-weight: normal; color:blue; font-size: 80%; text-align:center'>");
document.write(texss[rand]) ("</div>"); 
