function quote1() {
  var vs=new Array();
  var by=new Array();
  var ref=new Array();

  vs[0]="I am the way, the truth and the life.";
  by[0]="Jesus";
  ref[0]="John 14:6";

  vs[1]="Go and make disciples";
  by[1]="Jesus";
  ref[1]="from Matthew 28:19";

  vs[2]="Baptize in the name of the Father, and of the Son, and of the Holy Spirit.";
  by[2]="Jesus";
  ref[2]="from Matthew 28:19";

  vs[3]="Proclaim the good news to the whole creation.";
  by[3]="Jesus";
  ref[3]="from Mark 16:15";

  vs[4]="As the Father has sent me,<br>so I send you.";
  by[4]="Jesus";
  ref[4]="from John 20:21";

  vs[5]="But you will receive power when the Holy Spirit has come upon you; and you will be my witnesses";
  by[5]="Jesus";
  ref[5]="from Acts 1:8";

  vs[6]="For God so loved the world that He gave His only begotten Son, that whoever believes in Him should not perish but have everlasting life.";
  by[6]="Jesus";
  ref[6]="John 3:16";

  vs[7]="For God did not send His Son into the world to condemn the world, but that the world through Him might be saved.";
  by[7]="Jesus";
  ref[7]="John 3:17";
  
  vs[8]="I am the light of the world. He who follows Me shall not walk in darkness, but have the light of life.";
  by[8]="Jesus";
  ref[8]="John 8:12";

  vs[9]="Take My yoke upon you and learn from Me, for I am gentle and lowly in heart, and you will find rest for your souls. For My yoke is easy and My burden is light.";
  by[9]="Jesus";
  ref[9]="Matthew 11:29-30";

  vs[10]="Trust in the LORD with all your heart";
  by[10]="";
  ref[10]="Proverbs 3:5";

  vs[11]="Hear, O Israel: The LORD our God, the LORD is one!";
  by[11]="";
  ref[11]="Deuteronomy 6:4";
  
  vs[12]="and you shall love the Lord your God with all your heart, and with all your soul, and with all your mind, and with all your strength.";
  by[12]="Jesus";
  ref[12]="Mark 12:30 & Deuteronomy 6:5";
  
  vs[13]="Rejoice always,<br>pray without ceasing,<br>in everything give thanks;<br>for this is the will of God in Christ Jesus for you.";
  by[13]="";
  ref[13]="1 Thessalonians 5:16-18";

  by[14]="MMc";
  ref[14]="one";

  by[15]="MMc";
  ref[15]="two";

  var vcnt=vs.length;
  
//  document.getElementById("aa").innerHTML = "two";  
  var i=0;
//  document.getElementById("aa").innerHTML = "two point five";    
  i=Math.round(Math.random()*vcnt);
//  document.getElementById("aa").innerHTML = "three";
//  document.getElementById("aa").innerHTML = i;
  var byby="";
  if(by[i] != "") byby="-"+by[i];
  if(i==vs.length) i=i-1;
  if(i<0) i=0;
/*  document.getElementById("qq").innerHTML = "<p>"+vs[i]+"</p>"+
                                            "<p class=who>"+byby+"</p>"+
                                            "<p class=ref>"+ref[i]+"</p>";
*/
  document.write("<p class=verse>"+vs[i]+"</p>"+
                 "<p class=who>"+byby+"</p>"+
                 "<p class=ref>"+ref[i]+"<p>");
}


