        
        /* 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";                  
        verse[5] =  "The full soul loatheth an honeycomb; but to the hungry soul every bitter thing is sweet";   chapter [5]="Proverbs 27:7";                                         
        verse[6] =  "The blessing of the Lord, it maketh rich, and he addeth no sorrow with it";              chapter [6]="Proverbs 10:22";  
        verse[7] =  "He that trusteth in his riches shall fall: but the righteous shall flourish as a branch";chapter [7]="Proverbs 11:28";
        verse[8] =  "Incline my heart unto thy testimonies, and not to covetousness";                         chapter [8]="Psalms 119:36";  
        verse[9] =  "Give to him that asketh thee, and from him that would borrow of thee turn not thou away";chapter [9]="Matthew 5:42";
        verse[10] =  "Cast thy bread upon the waters: for thou shalt find it after many days";                chapter [10]="Ecc 11:1";  
        verse[11] =  "He that is greedy of gain troubleth his own house; but he that hateth gifts shall live";chapter [11]="Proverbs 15:27";
        verse[12] =  "Take no gift: for the gift blindeth the wise, and perverteth the words of the righteous";chapter [12]="Exodus 23:8";  
        verse[13] =  "The wicked borroweth, and payeth not again: but the righteous sheweth mercy, and giveth";chapter [13]="Psalms 37:21";
        verse[14] =  "But when thou makest a feast, call the poor, the maimed, the lame, the blind";           chapter [14]="Luke 14:13";  
        // verse[x] =  "xxxxxxxxxxxxxxxxxx";           chapter [X]="yyyyyyyyyyyyyyyyyyyyyy";
        // verse[x] =  "xxxxxxxxxxxxxxxxxx";           chapter [X]="yyyyyyyyyyyyyyyyyyyyyy";  
        // verse[x] =  "xxxxxxxxxxxxxxxxxx";           chapter [X]="yyyyyyyyyyyyyyyyyyyyyy";
        // verse[x] =  "xxxxxxxxxxxxxxxxxx";           chapter [X]="yyyyyyyyyyyyyyyyyyyyyy";  
        // verse[x] =  "xxxxxxxxxxxxxxxxxx";           chapter [X]="yyyyyyyyyyyyyyyyyyyyyy";



        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>"); 
        
        
        

        
        
         