//Widget to provide a different verse each day

	var date = new Date();
	var currDate = date.getDate();
	currDate = currDate-1;
		
	var verseArr = [];
		verseArr[0] = "I have been young and now I am old, yet I have not seen the righteous forsaken or his descendants begging bread.";
		verseArr[1] = "Do not worry then, saying, 'What will we eat?' or 'What will we drink?' or 'What will we wear for clothing?' For the Gentiles eagerly seek all these things; for your heavenly Father knows that you need all these things.";
		verseArr[2] = "If you then, being evil, know how to give good gifts to your children, how much more will your Father who is in heaven give what is good to those who ask Him!";
		verseArr[3] = "Indeed, the very hairs of your head are all numbered. Do not fear; you are more valuable than many sparrows.";
		verseArr[4] = "And God is able to make all grace abound to you, so that always having all sufficiency in everything; you may have an abundance for every good deed.";
		verseArr[5] = "And my God will supply all your needs according to His riches in glory in Christ Jesus.";
		verseArr[6] = "I, even I, am He who comforts you, who are you that you are afraid of man who dies and of the son of man who is made like grass.";
		verseArr[7] = "So do not worry about tomorrow; for tomorrow will care for itself. Each day has enough trouble of its own.";
		verseArr[8] = "Be anxious for nothing, but in everything by prayer and supplication with thanksgiving let your requests be made known to God.";
		verseArr[9] = "Casting all your anxiety on Him, because He cares for you.";
		verseArr[10] = "These things I have spoken to you, so that in Me you may have peace. In the world you have tribulation, but take courage; I have overcome the world.";
		verseArr[11] = "Do not fear, for I am with you; do not anxiously look about you, for I am your God. I will strengthen you, surely I will help you, surely I will uphold you with My righteous right hand.";
		verseArr[12] = "For God did not give us a spirit of timidity (of cowardice, of craven and cringing and fawning fear), but of power and of love and of calm and well-balanced mind and discipline and self-control.";
		verseArr[13] = "I have set the Lord continually before me; because He is at my right hand, I shall not be moved.";
		verseArr[14] = "Cast your burden on the Lord and He will sustain you; He will never allow the righteous to be moved.";
		verseArr[15] = "He only is my Rock and my Salvation; He is my Defense and my Fortress, I shall not be moved.";
		verseArr[16] = "Casting the whole of your care on Him, for He cares for you affectionately and cares about you watchfully.";
		verseArr[17] = '"For I know the plans I have for you," says the Lord. "They are plans for good and not for disaster, to give you a future and a hope."';
		verseArr[18] = "One thing I ask of the LORD, this is what I seek: that I may dwell in the house of the LORD all the days of my life, to gaze upon the beauty of the LORD and to seek him in his temple.";
		verseArr[19] = "Taste and see that the LORD is good; blessed is the man who takes refuge in him.";
		verseArr[20] = "A friend loves at all times, and a brother is born for adversity.";
		verseArr[21] = "The name of the Lord is a strong fortress; the godly run to him and are safe.";
		verseArr[22] = "But they that wait upon the LORD shall renew their strength; they shall mount up with wings as eagles; they shall run, and not be weary; and they shall walk, and not faint.";
		verseArr[23] = "Greater love has no one than this, that he lay down his life for his friends.";
		verseArr[24] = "And we know that God causes everything to work together for the good of those who love God and are called according to his purpose for them.";
		verseArr[25] = "Now we see things imperfectly as in a cloudy mirror, but then we will see everything with perfect clarity. All that I know now is partial and incomplete, but then I will know everything completely, just as God now knows me completely.";
		verseArr[26] = "Consider it all joy, my brethren, when you encounter various trials, knowing that the testing of your faith produces endurance. And let endurance have its perfect result, so that you may be perfect and complete, lacking in nothing.";
		verseArr[27] = "The LORD is my rock, my fortress and my deliverer; my God is my rock, in whom I take refuge. He is my shield and the horn of my salvation, my stronghold.";
		verseArr[28] = "When calamity comes, the wicked are brought down, but even in death the righteous have a refuge.";
		verseArr[29] = "For the word of God is quick, and powerful, and sharper than any two-edged sword, piercing even to the dividing asunder of soul and spirit, and of the joints and marrow, and is a discerner of the thoughts and intents of the heart.";
		verseArr[30] = "Ask, and it shall be given you; seek, and you shall find; knock, and it shall be opened unto you: For every one that asks receives; and he that seeks finds; and to him that knocks it shall be opened.";
	
	var refArr = [];
		refArr[0] = "Psalm 37:25";
		refArr[1] = "Matthew 6:31-32";
		refArr[2] = "Matthew 7:11";
		refArr[3] = "Luke 12:7";
		refArr[4] = "2 Corinthians 9:8";
		refArr[5] = "Philippians 4:19";
		refArr[6] = "Isaiah 51:12";
		refArr[7] = "Matthew 6:34";
		refArr[8] = "Philippians 4:6";
		refArr[9] = "1 Peter 5:7";
		refArr[10] = "John 16:33";
		refArr[11] = "Isaiah 41:10";
		refArr[12] = "2 Timothy 1:7";
		refArr[13] = "Psalm 16:8";
		refArr[14] = "Psalm 55:22 ";
		refArr[15] = "Psalm 62:6";
		refArr[16] = "Peter 5:7";
		refArr[17] = "Jeremiah 29:11";
		refArr[18] = "Psalm 27:4";
		refArr[19] = "Psalm 34:8";
		refArr[20] = "Proverbs 17:17";
		refArr[21] = "Proverbs 18:10";
		refArr[22] = "Isaiah 40:31";
		refArr[23] = "John 15:13";
		refArr[24] = "Romans 8:28";
		refArr[25] = "1 Corinthians 13:12 ";
		refArr[26] = "James 1:2-4";
		refArr[27] = "Psalm 18:2";
		refArr[28] = "Proverbs 14:32";
		refArr[29] = "Hebrews 4:12";
		refArr[30] = "Matthew 7:7-8";
		
	if ( typeof verseArr[currDate] !== "undefined" && typeof refArr[currDate] !== "undefined" ) {	
		var bibleVerse = document.getElementById('bibleverse').firstChild.nodeValue=verseArr[currDate];
		var bibleRef = document.getElementById('bibleref').firstChild.nodeValue=refArr[currDate];
	} else {
		return false;
	}
	
