
var msg=new Array();
msg[0]="...Not by might, nor by power, but by My Spirit, says the Lord of hosts.<br>Zech. 4:6 NKJV";
msg[1]="...to whom much is given, much is required.<br>Luke 12:48 NKJV";
msg[2]="...My people are destroyed for lack of knowledge...<br>Hosea 4:6 NKJV";
msg[3]="If my people, which are called by my name, shall humble themselves, and pray, and seek my face, and turn from their wicked ways; then will I hear from heaven, and will forgive their sin, and will heal their land.<br>II Chronicles 7:14";

function getRandomVerse() {
  var index = Math.floor(Math.random() * msg.length);
  return msg[index];
}

// replace image with random verse
$(document).ready(function() {
  $('#AlternatingTextPlaceholder').replaceWith(getRandomVerse());
});

