function MakeArray(n) {
this.length = n
return this
}
monthNames = new MakeArray(12)
monthNames[1] = "Janurary"
monthNames[2] = "February"
monthNames[3] = "March"
monthNames[4] = "April"
monthNames[5] = "May"
monthNames[6] = "June"
monthNames[7] = "July"
monthNames[8] = "August"
monthNames[9] = "Sept."
monthNames[10] = "Oct."
monthNames[11] = "Nov."
monthNames[12] = "Dec."
daysNames = new MakeArray(7)
daysNames[1] = "Sunday"
daysNames[2] = "Monday"
daysNames[3] = "Tuesday"
daysNames[4] = "Wednesday"
daysNames[5] = "Thursday"
daysNames[6] = "Friday"
daysNames[7] = "Saturday"

function customDateSpring(oneDate) {
    var theYear = oneDate.getYear();
	var theDay = daysNames[oneDate.getDay() +1];
	var theDate =oneDate.getDate();
	var theMonth = monthNames[oneDate.getMonth() +1];

	return theMonth + " " + theDate + ",  " + oneDate.getFullYear();
}

verseNames = new MakeArray(31)
verseNames[1] = "Everything got started in him and finds its purpose in him. - Colossian 1:16b (Msg)"
verseNames[2] = "I am your Creator:  You were in my care even before you were born.  Isaiah 44:2 (CEV)"
verseNames[3] = "You, LORD, give perfect peace to those who keep their purpose firm and put their trust in you.  Isaiah 26:3 (TEV)"
verseNames[4] = "This world is fading away, along with everything it craves.  But if you do the will of God, you will live forever. 1 John 2:17 (NLT)"
verseNames[5] = "Unless you are faithful in small matters, you won't be faithful in large ones.  Luke 16:10 (NLT)"
verseNames[6] = "So we fix our eyes not on what is seen, but on what is unseen.  For what is seen is temporary, but what is unseen is eternal.  2 Corinthians 4:18(NIV)"
verseNames[7] = "For everything comes from God alone.  Everything lives by his power, and everything is for his glory.  Romans 11:365 (LB)"
verseNames[8] = "The LORD takes pleasure in his people.  Psalm 149:4a (TEV)"
verseNames[9] = "The LORD is pleased with those who worship him and trust his love.  Psalm 147:11 (CEV)"
verseNames[10] = "Surrender you whole being to him to be used for righteous purposes.  Roman 6:13b (TEV)"

verseNames[11] = "Friendship with God is reserved for those who reverence him. Psalm 25:14a (LB)"
verseNames[12] = "Draw me close to God, and God will draw close to you. James 4:8a (NLT)"
verseNames[13] = "YLove the Lord your God with all your heart and with all your soul and with all your mind and with all your strength. Mark 12:30 (NIV)"

verseNames[14] = "For God has said, 'I will never leave you; I will never abandon you.' Hebrew 13:5 (TEV)"

verseNames[15] = "His unchanging plan has always been to adopt us into his own family by bringing us to himself through Jesus Christ.  Ephesians 1:5a (NLT)"

verseNames[16] = "The entire law is summed up in a single command: 'Love your neighbor as yourself.'  Galatians 5:14 (NIV)"

verseNames[17] = "In Christ we who are many form on body, and each member belongs to all the others. Roman 12:5 (NIV)"

verseNames[18] = "Share each other's troubles and problems, and in this way obey the law of Christ.  Galatians 6:2 (NLT)"

verseNames[19] = "We understand that love is when we realize that Christ gave his life for us.  That means we must give our lives for other believers.  1 John 3:16 (GWT)"

verseNames[20] = "Do everything possible on your part to live in peace with everybody.  Roman 12:18 (TEV)"

verseNames[21] = "Let us concentrate on the things which make for harmony and growth of our fellowship together. Roman 4:19 (Ph)"

verseNames[22] = "As the Spirit of the Lord woks within us, we become more and more like him and reflect his glory even more. 2 Corinthians 3:18b (NLT)"

verseNames[23] = "Let God transformed you inwardly by complete change of your mind.  Then you will be able to know the will of God - what is good and is pleasing to him and is perfect. Romans 12:2b (TEV)"

verseNames[24] = "If you continue in my word, then are you my disciple indeed; and you shall know the truth, and the truth shall make you free. John 8:31-32 (KJV)"

verseNames[25] = "And we know that in all things God works for the good of those who love him, who have been called according to his purpose.  Romans 8:28 (NIV)"

verseNames[26] = "God bless the people who patiently endure testing.  Afterward they will receive the crown of life that God has promised to those who love him.  James 1:12 (NLT)"

verseNames[27] = "God is faithful.  He will keep the temptation from becoming so strong that you can't stand up against it.  When you are tempted, he will show you a way out so that you will not give in to it.  1 Corinthians 10:13b (NLT)"

verseNames[28] = "God began doing a good work in you, and I am sure he will continue it until it is finished.  When Jesus Christ comes again.  Philippians 1:6 (NCV)"

verseNames[29] = "For we are God's workmanship, created in Christ Jesus to do good works, which God prepared in advance for us to do.  Ephesians 2:10 (NIV)"

verseNames[30] = "God works through different men in different ways, but it is the same God who achieves his purpose through them all.  1 Corinthians 12:6 (Ph)"

verseNames[31] = "God has given each of you some special abilities; be sure to use them to help each other, passing on to others God's many kinds of blessings.  1 Peter 4:10 (LB)"

function getDailyVerse(oneDate){
	oneDate = new Date();
	var theDate =oneDate.getDate()
	
	return verseNames[theDate]
}