        
        /* randomly select and display bible verses on loading every page */

        var verse   = new Array();
        var chapter = new Array(); 

        verse[0] =  "For, Whosoever shall call upon the name of the Lord shall be saved";                     chapter [0]="Romans 10:13";
        verse[1] =  "Be not hasty in thy spirit to be angry: for anger resteth in the bosom of fools";        chapter [1]="Ecc  7:9";
        verse[2] =  "Turn ye not unto idols, nor make to yourselves molten gods: I [am] the LORD your God";   chapter [2]="Leviticus 19:4";
        verse[3] =  "Ye shall keep my sabbaths, and reverence my sanctuary: I am the LORD";                   chapter [3]="Leviticus 26:2";
        verse[4] =  "He that dwelleth in the secret place of the most High shall dwell under the shadow of the Almighty";  chapter [4]="Psalms 91:1";                  
       


        var rn = Math.floor(Math.random() * verse.length);
        var loop=1;
        
               
        document.write("<td width='1' bgcolor='#000000'></td>" +
                       "<td class='bibleverses' width='522' height='15' bgcolor='#6570B2'>" + verse[rn] + "</td>" +
                       "<td width='1' bgcolor='#000000'></td>" +
                       "<td width='1' bgcolor='#B4C6F2'></td>" +
                       "<td class='bibleverses' width='150' height='15' bgcolor='#6570B2'>" + chapter[rn] + "</td>" +
                       "<td width='1' bgcolor='#000000'></td>" +
                       "<td width='1' bgcolor='#B4C6F2'></td>"); 
        
        
        

        
        
         