<!-- Slideshow
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
//fadeimages[0]=["common/images/slideshow/heavenlysightings.jpg", "ministry-youth.aspx#events", "", "Click for more info"] //file/link/target/title
fadeimages[0]=["common/images/slideshow/senioradult.jpg", "", "", ""]
fadeimages[1]=["common/images/slideshow/awana.jpg", "", "", ""]
fadeimages[2]=["common/images/slideshow/prayergroup.jpg", "", "", ""]
 
var fadeimages2=new Array() //2nd array set example. Remove or add more sets as needed.
//SET IMAGE PATHS. Extend or contract array as needed
//fadeimages2[0]=["photo1.jpg", "", ""] //plain image syntax
//fadeimages2[1]=["photo2.jpg", "http://www.cssdrive.com", ""] //image with link syntax
//fadeimages2[2]=["photo3.jpg", "http://www.javascriptkit.com", "_new"] //image with link and target syntax
 
var fadebgcolor="#605944"

////NO need to edit beyond here/////////////
 
var fadearray=new Array() //array to cache fadeshow instances
var fadeclear=new Array() //array to cache corresponding clearinterval pointers
 
var dom=(document.getElementById) //modern dom browsers
var iebrowser=document.all
 
function fadeshow(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck=pause
this.mouseovercheck=0
this.delay=delay
this.degree=10 //initial opacity degree (10%)
this.curimageindex=0
this.nextimageindex=1
fadearray[fadearray.length]=this
this.slideshowid=fadearray.length-1
this.canvasbase="canvas"+this.slideshowid
this.curcanvas=this.canvasbase+"_0"
if (typeof displayorder!="undefined")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages=theimages
this.imageborder=parseInt(borderwidth)
this.postimages=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages[p]=new Image()
this.postimages[p].src=theimages[p][0]
}
 
var fadewidth=fadewidth+this.imageborder*2
var fadeheight=fadeheight+this.imageborder*2
 
if (iebrowser&&dom||dom) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master'+this.slideshowid+'" style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"><div id="'+this.canvasbase+'_0" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div><div id="'+this.canvasbase+'_1" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div></div>')
else
document.write('<div><img name="defaultslide'+this.slideshowid+'" src="'+this.postimages[0].src+'"></div>')
 
if (iebrowser&&dom||dom) //if IE5+ or modern browsers such as Firefox
this.startit()
else{
this.curimageindex++
setInterval("fadearray["+this.slideshowid+"].rotateimage()", this.delay)
}
}

function fadepic(obj){
if (obj.degree<100){
obj.degree+=10
if (obj.tempobj.filters&&obj.tempobj.filters[0]){
if (typeof obj.tempobj.filters[0].opacity=="number") //if IE6+
obj.tempobj.filters[0].opacity=obj.degree
else //else if IE5.5-
obj.tempobj.style.filter="alpha(opacity="+obj.degree+")"
}
else if (obj.tempobj.style.MozOpacity)
obj.tempobj.style.MozOpacity=obj.degree/101
else if (obj.tempobj.style.KhtmlOpacity)
obj.tempobj.style.KhtmlOpacity=obj.degree/100
else if (obj.tempobj.style.opacity&&!obj.tempobj.filters)
obj.tempobj.style.opacity=obj.degree/101
}
else{
clearInterval(fadeclear[obj.slideshowid])
obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")? obj.canvasbase+"_0" : obj.canvasbase+"_1"
obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] : document.getElementById(obj.nextcanvas)
obj.populateslide(obj.tempobj, obj.nextimageindex)
obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)? obj.nextimageindex+1 : 0
setTimeout("fadearray["+obj.slideshowid+"].rotateimage()", obj.delay)
}
}
 
fadeshow.prototype.populateslide=function(picobj, picindex){
var slideHTML=""
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHTML='<a href="'+this.theimages[picindex][1]+'" target="'+this.theimages[picindex][2]+'" title="'+this.theimages[picindex][3]+'">'
slideHTML+='<img src="'+this.postimages[picindex].src+'" border="'+this.imageborder+'px">'
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHTML+='</a>'
picobj.innerHTML=slideHTML
}
 
 
fadeshow.prototype.rotateimage=function(){
if (this.pausecheck==1) //if pause onMouseover enabled, cache object
var cacheobj=this
if (this.mouseovercheck==1)
setTimeout(function(){cacheobj.rotateimage()}, 100)
else if (iebrowser&&dom||dom){
this.resetit()
var crossobj=this.tempobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
crossobj.style.zIndex++
fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50)
this.curcanvas=(this.curcanvas==this.canvasbase+"_0")? this.canvasbase+"_1" : this.canvasbase+"_0"
}
else{
var ns4imgobj=document.images['defaultslide'+this.slideshowid]
ns4imgobj.src=this.postimages[this.curimageindex].src
}
this.curimageindex=(this.curimageindex<this.postimages.length-1)? this.curimageindex+1 : 0
}
 
fadeshow.prototype.resetit=function(){
this.degree=10
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
if (crossobj.filters&&crossobj.filters[0]){
if (typeof crossobj.filters[0].opacity=="number") //if IE6+
crossobj.filters(0).opacity=this.degree
else //else if IE5.5-
crossobj.style.filter="alpha(opacity="+this.degree+")"
}
else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=this.degree/101
else if (crossobj.style.KhtmlOpacity)
crossobj.style.KhtmlOpacity=this.degree/100
else if (crossobj.style.opacity&&!crossobj.filters)
crossobj.style.opacity=this.degree/101
}
 
 
fadeshow.prototype.startit=function(){
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
this.populateslide(crossobj, this.curimageindex)
if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj=this
var crossobjcontainer=iebrowser? iebrowser["master"+this.slideshowid] : document.getElementById("master"+this.slideshowid)
crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}
crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}
}
this.rotateimage()
}
//-->

<!-- Today's Word
var word = new Array();
Stamp = new Date();
today = Stamp.getDate();

word[1] = "Praise be to the God and Father of our Lord Jesus Christ! In his great mercy he has given us new birth into a living hope through the resurrection of Jesus Christ from the dead, and into an inheritance that can never perish, spoil or fade, kept in heaven for you.<br /><span class='book'>~ 1 Peter 1:3-4</span>";

word[2] = "Blessed is the man who perseveres under trial, because when he has stood the test, he will receive the crown of life that God has promised to those who love him.<br /><span class='book'>~ James 1:12</span>";

word[3] = "Be silent before the Sovereign LORD, for the day of the LORD is near. The LORD has prepared a sacrifice; he has consecrated those he has invited.<br /><span class='book'>~ Zephaniah 1:7</span>";

word[4] = "Now this is what the LORD Almighty says: Give careful thought to your ways. You have planted much, but have harvested little. You eat, but never have enough. You drink, but never have your fill. You put on clothes, but are not warm. You earn wages, only to put them in a purse with holes in it.<br /><span class='book'>~ Haggai 1:5;6</span>";

word[5] = "I have been crucified with Christ and I no longer live, but Christ lives in me. The life I live in the body, I live by faith in the Son of God, who loved me and gave himself for me.<br /><span class='book'>~ Galatians 2:20</span>";

word[6] = "Seek the LORD while he may be found; call on him while he is near.<br /><span class='book'>~ Isaiah 55:6</span>";

word[7] = "For my thoughts are not your thoughts, neither are your ways my ways, declares the LORD. As the heavens are higher than the earth, so are my ways higher than your ways and my thoughts than your thoughts.<br /><span class='book'>~ Isaiah 55:8-9</span>";

word[8] = "Trust in the LORD forever, for the LORD, the LORD, is the Rock eternal. He humbles those who dwell on high, he lays the lofty city low; he levels it to the ground and casts it down to the dust.<br /><span class='book'>~ Isaiah 26:4-5</span>";

word[9] = "O God, you are my God, earnestly I seek you; my soul thirsts for you, my body longs for you, in a dry and weary land where there is no water.<br /><span class='book'>~ Psalm 63:1</span>";

word[10] = "I, even I, am the LORD, and apart from me there is no savior. I have revealed and saved and proclaimed — I, and not some foreign god among you. You are my witnesses, declares the LORD, that I am God.<br /><span class='book'>~ Isaiah 43:11-12</span>";

word[11] = "It is the LORD your God you must follow, and him you must revere. Keep his commands and obey him; serve him and hold fast to him.<br /><span class='book'>~ Deuteronomy 13:4</span>";

word[12] = "To the pure, all things are pure, but to those who are corrupted and do not believe, nothing is pure. In fact, both their minds and consciences are corrupted.<br /><span class='book'>~ Titus 1:15</span>";

word[13] = "May the words of my mouth and the meditation of my heart be pleasing in your sight, O LORD, my Rock and my Redeemer.<br /><span class='book'>~ Psalm 19:14</span>";

word[14] = "I waited patiently for the LORD; he turned to me and heard my cry. He lifted me out of the slimy pit, out of the mud and mire; he set my feet on a rock and gave me a firm place to stand.<br /><span class='book'>~ Psalm 40: 1-2</span>";

word[15] = "The LORD confides in those who fear him; he makes his covenant known to them. My eyes are ever on the LORD, for only he will release my feet from the snare.<br /><span class='book'>~ Psalm 25:14-15</span>";

word[16] = "I urge, then, first of all, that requests, prayers, intercession and thanksgiving be made for everyone— for kings and all those in authority, that we may live peaceful and quiet lives in all godliness and holiness.<br /><span class='book'>~ 1 Timothy 2:1-2</span>";

word[17] = "Delight yourself in the LORD and he will give you the desires of your heart.<br /><span class='book'>~ Psalm 37:4</span>";

word[18] = "For the word of God is living and active. Sharper than any double-edged sword, it penetrates even to dividing soul and spirit, joints and marrow; it judges the thoughts and attitudes of the heart.<br /><span class='book'>~ Hebrews 4:12</span>";

word[19] = "Therefore, I urge you, brothers, in view of God's mercy, to offer your bodies as living sacrifices, holy and pleasing to God — this is your spiritual act of worship.<br /><span class='book'>~ Romans 12:1</span>";

word[20] = "For it is by grace you have been saved, through faith—and this not from yourselves, it is the gift of God— not by works, so that no one can boast.<br /><span class='book'>~ Ephesians 2:8-9</span>";

word[21] = "Now that you have purified yourselves by obeying the truth so that you have sincere love for your brothers, love one another deeply, from the heart.<br /><span class='book'>~ 1 Peter 1:22</span>";

word[22] = "See to it that no one takes you captive through hollow and deceptive philosophy, which depends on human tradition and the basic principles of this world rather than on Christ.<br /><span class='book'>~ Colossians 2:8</span>";

word[23] = "Bring the whole tithe into the storehouse, that there may be food in my house. Test me in this, says the LORD Almighty, and see if I will not throw open the floodgates of heaven and pour out so much blessing that you will not have room enough for it.<br /><span class='book'>~ Malachi 3:10</span>";

word[24] = "In all my prayers for all of you, I always pray with joy because of your partnership in the gospel from the first day until now, being confident of this, that he who began a good work in you will carry it on to completion until the day of Christ Jesus.<br /><span class='book'>~ Philippians 1:4-6</span>";

word[25] = "And this is my prayer: that your love may abound more and more in knowledge and depth of insight, so that you may be able to discern what is best and may be pure and blameless until the day of Christ.<br /><span class='book'>~ Philippians 1:9-10</span>";

word[26] = "For with much wisdom comes much sorrow; the more knowledge, the more grief.<br /><span class='book'>~ Ecclesiastes 1:18</span>";

word[27] = "Nothing in all creation is hidden from God's sight. Everything is uncovered and laid bare before the eyes of him to whom we must give account.<br /><span class='book'>~ Hebrews 4:13</span>";

word[28] = "I do not set aside the grace of God, for if righteousness could be gained through the law, Christ died for nothing.<br /><span class='book'>~ Galatians 2:21</span>";

word[29] = "For the grace of God that brings salvation has appeared to all men. It teaches us to say No to ungodliness and worldly passions, and to live self-controlled, upright and godly lives in this present age.<br /><span class='book'>~ Titus 2:11-12</span>";

word[30] = "Consider it pure joy, my brothers, whenever you face trials of many kinds, because you know that the testing of your faith develops perseverance. Perseverance must finish its work so that you may be mature and complete, not lacking anything.<br /><span class='book'>~ James 1:2-4</span>";

word[31] = "For all men are like grass, and all their glory is like the flowers of the field; the grass withers and the flowers fall, but the word of the Lord stands forever.<br /><span class='book'>~ 1 Peter 1:24-25a</span>";

function todaysWord() { 
document.write(word[today]);
}
//-->
