        //scroller width
        var swidth=250;

        //scroller height
        var sheight=200;

        //background color
        var sbcolor='#ffffff';

        //scroller's speed
        var sspeed=4;

        var msg=''

        //Your messages go below:


        msg +=
            
            '<h6>Baby Dedication Seminar(Required before baby dedication)</h6><h5> Every First Friday, After 1230 service, Pastor Jerry Office</h5>'+
			//'<h6>Corporate Prayer</h6><h5>Tuesday, June 10th, 1800 - 2000, Lighthouse</h5>'+
			//'<h3>> > > ></h3>'+//
			'<h6>Overnight Prayer</h6><h5>Every Third Thursday, 22:30 - 04:30, Lighthouse</h5>'+
			'<h3>> > > ></h3>'+
			'<h6>Baptism Seminar(Required before baptism)</h6><h5>Every Second Last Friday, Lighthouse</h5>'+
			'<h3>> > > ></h3>'+
			'<h6>Baptism</h6><h5>Every Last Friday, after 12:30 service</h5>'+
			'<h3>> > > ></h3>'+
			'<h6>Intecessory Prayer</h6><h5>Every Thursday, 17:00 - 19:00, Prayer Room<br><a href="prayabout.html">more...</a></h5>'+
			'<h3>> > > ></h3>'+
			
			'<h6>Childrens Church</h6><h5>Every Sunday, 18:00 - 19:45, Fellowship Hall</h5>'+
			'<h3>> > > ></h3>'+
			                     
        '';

        //End of your messages
        // Begin the ticker code

        var resumesspeed=sspeed
        function start() {
                if (document.all) iemarquee(ticker);
                else if (document.getElementById)
                        ns6marquee(document.getElementById('ticker'));
        }
        
        function iemarquee(whichdiv){
                iediv=eval(whichdiv)
                sheight += 50;
                iediv.style.pixelTop=sheight
                iediv.innerHTML=msg 
                sizeup=iediv.offsetHeight
                ieslide()
        }
        
        function ieslide(){
                if (iediv.style.pixelTop>=sizeup*(-1)){
                        iediv.style.pixelTop-=sspeed
                        setTimeout("ieslide()",100)
                }
                else{
                        iediv.style.pixelTop=sheight
                        ieslide()
                }
        }
        
        function ns6marquee(whichdiv){
                ns6div=eval(whichdiv)
                sheight += 50;
                ns6div.style.top=sheight + "px";
                ns6div.innerHTML=msg
                sizeup=ns6div.offsetHeight
                ns6slide()
        }
        function ns6slide(){
                if (parseInt(ns6div.style.top)>=sizeup*(-1)){
                        theTop = parseInt(ns6div.style.top)-sspeed
                        ns6div.style.top = theTop + "px";
                        setTimeout("ns6slide()",100)
                }
                else {
                        ns6div.style.top = sheight + "px";
                        ns6slide()
                }
        }

