function get_date(maxNum)
{
today = new Date();
t = today.getDate()
return t;
}

function dateQuote()
{
var today = new Date();
var year = today.getYear();
year = (year < 2000) ? year + 1900 : year;
var textdate = (today.getMonth() + 1) + '.' + today.getDate() + '.' + year;

var maxQuotes=31;
var dQuote=get_date(maxQuotes);
dQuote--;

var quote=new Array(maxQuotes)

quote[0] = "\"For You, O Lord, will bless the righteous; With favor You will surround him as with a shield\" (Psalm 5:12 NKJV).";

quote[1] = "\"My defense is of God, Who saves the upright in heart\" (Psalm 7:10 NKJV).";

quote[2] = "\"O Lord, our Lord, How excellent is Your name in all the earth!\" (Psalm 8:9 NKJV).";

quote[3] = "\"And those who know Your name will put their trust in You; For You, Lord, have not forsaken those who seek You\" (Psalm 9:10 NKJV).";

quote[4] = "\"The fool has said in his heart, 'There is no God'\" (Psalm 14:1 NKJV).";

quote[5] = "\"The Lord lives! Blessed be my Rock! Let the God of my salvation be exalted\" (Psalm 18:46 NKJV).";

quote[6] = "\"Some trust in chariots, and some in horses; But we will remember the name of the Lord our God\" (Psalm 20:7 NKJV).";

quote[7] = "\"[Jesus] said to them, 'But who do you say that I am?' Simon Peter answered and said, 'You are the Christ, the Son of the living God'\" (Matthew 16:15-16 NKJV).";

quote[8] = "\"And I also say to you that you are Peter, and on this rock I will build My church, and the gates of Hades shall not prevail against it\" (Matthew 16:18 NKJV).";

quote[9] = "\"Then Jesus said to His disciples, 'If anyone desires to come after Me, let him deny himself, and take up his cross, and follow Me'\" (Matthew 16:24 NKJV).";

quote[10] = "\"Assuredly, I say to you, unless you are converted and become as little children, you will by no means enter the kingdom of heaven\" (Matthew 18:3 NKJV).";

quote[11] = "\"Therefore whoever humbles himself as this little child is the greatest in the kingdom of heaven\" (Matthew 18:4 NKJV).";

quote[12] = "\"Go therefore and make disciples of all the nations, baptizing them in the name of the Father and the Son and of the Holy Spirit...(Matthew 28:19 NKJV).";

quote[13] = "\"'..Teaching them to observe all things that I have commanded you; and lo, I am with you always, even to the end of the age.' Amen\" (Matthew 28:20 NKJV).";

quote[14] = "\"Then God said, 'Let us make man in Our image, according to Our likeness..\" (Genesis 1:26 NKJV).";

quote[15] = "\"So God created man in His own image; in the image of God He created him; male and female He created them\" (Genesis 1:27).";

quote[16] = "\"And the Lord God said, 'It is not good that man should be alone; I will make him a helper comparable to him'\" (Genesis 2:18 NKJV).";

quote[17] = "\"But Noah found grace in the eyes of the Lord. This is the genealogy of Noah. Noah was a just man, perfect in his generations. Noah walked with God\" (Genesis 6:8-9 NKJV).";

quote[18] = "\"Thus Noah did; according to all that God commanded him, so he did\" (Genesis 6:22 NKJV).";

quote[19] = "\"After these things the word of the Lord came to Abram in a vision, saying, 'Do not be afraid, Abram. I am your shield, your exceedingly great reward'\" (Genesis 15:1).";

quote[20] = "\"And He said, 'Let Me go, for the day breaks.' But he [Jacob] said, 'I will not let you go unless You bless me!'\" (Genesis 32:26 NKJV).";

quote[21] = "\"...The time is fulfilled, and the kingdom of God is at hand. Repent, and believe in the gospel\" (Mark 1:15 NKJV).";

quote[22] = "\"...'Teacher, do You not care that we are perishing?' Then He arose and rebuked the wind, and said to the sea, 'Peace, be still!' And the wind ceased and there was a great calm\" (Mark 4:38-39 NKJV).";

quote[23] = "\"But He said to them, 'Why are you so fearful? How is it that you have no faith?'\" (Mark 4:40 NKJV).";

quote[24] = "\"and they feared exceedingly, and said to one another, 'Who can this be, that even the wind and the sea obey Him!'\" (Mark 4:41 NKJV).";

quote[25] = "\"Go home to your friends, and tell them what great things the Lord has done for you, and how He has had compassion on you\" (Mark 5:19 NKJV).";

quote[26] = "\"And when they saw Him walking on the sea, they supposed it was a ghost, and cried out; for they all saw Him and were troubled. But immediately He talked with them and said to them, 'Be of good cheer! It is I; do not be afraid'\" (Mark 6:49-50 NKJV).";

quote[27] = "\"For whoever desires to save his life will lose it, but whoever loses his life for My sake and the gospel's will save it. For what will it profit a man if he gains the whole world, and loses his own soul\" (Mark 8:36-37 NKJV).";

quote[28] = "From now on, when you till the ground, it won't yield its strength to you. You shall be a fugitive and a wanderer in the earth. Genesis 4:12";

quote[29] = "Open the gates, that the righteous nation may enter: the one which keeps faith. Isaiah 26:2";

quote[30] = "Open the gates, that the righteous nation may enter: the one which keeps faith. Isaiah 26:2";


document.write('<p class="today"><b>Bible Verse for ' + textdate + '</b></p>' + '<p class="verse">' + quote[dQuote] + '</p>');

}
