function displayVerse()
{
	var date = new Date();
	secs = date.getSeconds();
	
	var verseLib = new Array();
	verseLib[0] = "For by grace you have been saved through faith, and this is not your own doing; it is the gift of God- not the result of works, so that no one may boast. For we are what he has made us, created in Christ Jesus for good works, which God prepared beforehand to be our way of life.<br /><b>Ephesians 2:8-10</b>";
	
	verseLib[1] = "For God did not give us a spirit of cowardice, but rather a spirit of power and of love and of self-discipline.<br /><b>2 Timothy 1:7</b>";
	
	verseLib[2] = "The word of God is not chained.<br /><b>2 Timothy 2:9</b>";
	
	verseLib[3] = "Therefore, since it is by God's mercy that we are engaged in this ministry, we do not lose heart.<br /><b>2 Corinthians 4:1</b>";
	
	verseLib[4] = "For we are not peddlers of God's word like so many; but in Christ we speak as persons of sincerity, as persons sent from God and standing in his presence.<br /><b>2 Corinthians 2:17</b>";
	
	verseLib[5] = "Therefore, since we are justified by faith, we have peace with God through our Lord Jesus Christ.<br /><b>Romans 5:1</b>";
	
	verseLib[6] = "For we cannot keep from speaking about what we have seen and heard.<br /><b>Acts 4:20</b>";
	
	verseLib[7] = "This is my commandment, that you love one another as I have loved you.<br /><b>John 15:12</b>";
	
	verseLib[8] = "What has come into being in him was life, and the life was the light of all people. The light shines in the darkness, and the darkness did not overcome it.<br /><b>John 1:3-5</b>";
	
	var size = verseLib.length;
	var verse = secs % size;
	document.write(verseLib[verse]);					
}
function displayQuote()
{
	var date = new Date();
	secs = date.getSeconds();
	
	var quoteLib = new Array();
	quoteLib[0] = "I am thankful for this community of faith.";
	quoteLib[1] = "I am thankful for a place to worship and a place to pray.";
	quoteLib[2] = "I am thankful for warm greetings every Sunday.";
	quoteLib[3] = "I am thankful for support and prayers during the trying times of my life and celebrating with my family during the happy times.";
	quoteLib[4] = "I am thankful for how this congregation invites everyone to belong and to contribute \"in thought, word, and deed\".";
	quoteLib[5] = "I am thankful for wonderful music - singing and listening.";
	quoteLib[6] = "I am thankful for thoughtful sermons that bring the gospel to my life and apply it.";
	quoteLib[7] = "I am thankful for how the Church helps to fill the Empty corners of our Spirit.";
	quoteLib[8] = "I am thankful for a community that supports children and offers many community giving opportunities.";
	quoteLib[9] = "I am thankful for the opportunity to teach Sunday school.";
	quoteLib[10] = "I am thankful for a place where children are accepted and cherished."; 
	quoteLib[11] = "I am thankful for a church that is caring and helps me grow in faith and service.";
	quoteLib[12] = "I am thankful for tolerance, diversity, lack of pretense, and generosity of spirit.";
	quoteLib[13] = "I am thankful for a Lutheran church to visit in Stillwater.";
	quoteLib[14] = "I am thankful for a community that is helping me and my son find our way.";
	quoteLib[15] = "I am thankful for the opportunity to worship with a congregation whose morals and values align with my own internal moral compass.";
	quoteLib[16] = "I am thankful for the open hearts and open minds we have found here.";
	quoteLib[17] = "I am thankful for a faith community that allows me to give voice to my doubts and fears - that does not reject me but still loves me.";
	quoteLib[18] = "I am thankful that I have found a group of thought-provoking, faith-growing, spirit-loving Christians here.";
	quoteLib[19] = "I am thankful because this church is my second family.  I could not live weekly without the faith and hope given me each day and week by my Salem family.";
	quoteLib[20] = "I am thankful because I always learn something I did not know."; 
	quoteLib[21] = "I am thankful because  God is truly here.";
	
	var size = quoteLib.length;
	var quote = secs % size;
	document.write(quoteLib[quote]);					
}
