function addScrollers() {

// code each scroller as follows:

// startScroll('id of scroller div','content of scroller');

startScroll('myscroller','<P><IMG SRC="images/spacer.gif"><br><P><IMG SRC="images/spacer.gif"><p><b><font color="WHITE"><B><center><p><img src="images/scroll_prayer_requests.gif"></center><br><b><ul><li>Suzanne Payne</li><li>Phyllis Garrett</li><LI>Wayne Holt</li><li>Jolena Holt</li><li>Paris Nichols</li><li>Jolene Nichols</li><li>Our Military</li></ul></b><p><center><img src="images/scroll_birthdays.gif"></center><br><ul><li>Lucille Brown - 8/03</li><li>Bud Earnhart - 8/17</li><li>James Fesler - 8/18</li><li>Gale Eaton - 8/23</li><li>Tami Smith - 8/28</li></ul><CENTER><img src="images/scroll_calendar.gif"></center><br><center>Pastor Mike Stewart preaches<br>every Sunday morning at<br>8:45 a.m. on 770 AM (the local<br>station airing in Hiawassee)<hr>Pastor Jarvis Bennett preaches<br>the gospel at both morning and <br>evening services on the first<br>Sunday of every month.<hr>The Adult Sunday School Class<br>will be meeting on Sunday <br>mornings from 9:00 to 9:45.<p>Come and be a part of this <br>wonderful time of fellowship,<br>facilitated by David Smith.<p><hr>The Women of Grace bi-monthly<br>meetings at the Ministries of<br>Grace church. Contact them for more<BR> info on times and dates.<p><hr>The Mens Weekly Breakfast is<br>held at Marys Southern Grill.<br>every Saturday morning at 8:30 A.M.<hr></center><p><p>');

startScroll('twoscroll','<p>Yet another scroller!</p>');

}



var speed=10; // scroll speed (bigger = faster)

var dR=false; // reverse direction



// Vertical Scroller Javascript

// copyright 24th September 2005, by Stephen Chapman

// permission to use this Javascript on your web page is granted

// provided that all of the code below (as well as these

// comments) is used without any alteration

var step = 2; function objWidth(obj) {if(obj.offsetWidth) return obj.offsetWidth; if (obj.clip) return obj.clip.width; return 0;} function objHeight(obj) {if(obj.offsetHeight) return obj.offsetHeight; if (obj.clip) return obj.clip.height; return 0;} function scrF(i,sH,eH){var x=parseInt(i.top)+(dR? step: -step); if(dR && x>sH)x=-eH;else if(x<2-eH)x=sH;i.top = x+'px';} function startScroll(sN,txt){var scr=document.getElementById(sN); var sW = objWidth(scr)-6; var sH = objHeight(scr); scr.innerHTML = '<div id="'+sN+'in" style="position:absolute; left:3px; width:'+sW+';">'+txt+'<\/div>'; var sTxt=document.getElementById(sN+'in'); var eH=objHeight(sTxt); sTxt.style.top=(dR? -eH : sH)+'px'; sTxt.style.clip='rect(0,'+sW+'px,'+eH+'px,0)'; setInterval(function() {scrF(sTxt.style,sH,eH);},1000/speed);}

window.onload = addScrollers;

                  