function addScrollers() {
// code each scroller as follows:
// startScroll('id of scroller div','content of scroller');
// cannot use apostrophies (') in text (note from gary)

startScroll('newsscroller','<p><CENTER><font size="2" color="#000000" face="verdana"><B>"Enroll Now for the<BR>2012-2013 School Year"</B><BR><BR><BR><B>Thank you to Keri LeBlanc from The Trim Shoppe in Venice</B> for sponsering our hair cuts for the <B>Locks of Love</B>.  She did a fabulous job!  Also, many thanks to our participants who selflessly gave up their hair for a good cause,</center><BR>Talee Howard (Student),<BR>Mrs. Profita (Parent),<BR>Mrs. Rodriguez (Parent),<BR>Mr. Parrott (Mrs. Hunt&acute;s father)<BR>& our very own Mrs. Davis.  Thanks to all!<BR><BR><BR><center>View the <a href="slavideos.html">"Lost And Found Fashion Show" Video</a>, claim what&acute;s yours!!<BR><BR>The <B>Craft Class</B> is in need of donated craft items.  Mark them "Crafts" and drop off to Cindi in the Library, receive volunteer hours for your items.<BR><BR><BR>The new <B>Sewing/Cooking Class</B> is seeking donated items.  An email was sent out with requested items.  Contact Mrs. Hart for more info.<BR><BR>The <B>Knitting Club</B> is looking for donations of yarn.<BR><BR><BR><B>SLA in Sun Fiesta Parade</B><BR><img src="images/parade_4scrollerwindow.jpg"><BR><BR>SLA Float in Holiday Day Parade</font><img src="images/paradefloat2011.jpg"></CENTER><BR><BR><font size="2" face="verdana" color="000000">SLA WINNER of the 2011 Character Education Partnership&acute;s PROMISING PRACTICE AWARD.<BR><BR>Also honored for status as a HIGH PERFORMING CHARTER SCHOOL<BR><font size="2" color="#000000">Check out "SLA Commendations" menu item.</font><BR><BR><CENTER><B>Science Fair Winners</B></CENTER><BR><B>6th</B><BR>1st Chelsea Singleton<BR>2nd Tyler Welsh tied with John Eckert<BR>3rd Eric Faulkner<BR><BR><B>7th</B><BR>1st Ashley Trautvetter and Sophia Gee<BR>2nd Jacob Hinshaw tied with Callie Dipillo and Madison Betts<BR> 3rd Anthony Torres<BR><BR><B>8th</B><BR>1st Courtney Purcell and Julia Lesko<BR>2nd Nick Akerson<BR>3rd Brady Hodges tied with Jacob Jannsen<BR><BR><BR>Our SLA sports teams are doing great!! Come out and support our teams as they compete and learn life lessons and good sportsmanship in the process.<BR>Keep up the great work teams!!<BR><BR><BR>SLA&acute;s soccer team is posted on the Soccer page.<BR><BR><B>Take Stock In Children of Sarasota County</B>, <I>College Funds Application</I> is on the <a href="dl_forms.html">Downloads Page</a>, a full four year scholarship for qualifying families.<BR><BR></p>');

startScroll('eventscroller','<p><font size="2" face="verdana" color="#000000"><B>FEB 21</B> - 3:30<BR> SLA VS VENICE CHRISTIAN AT WELLFIELD, VENICE<BR> <BR> <B>FEB 23</B> - 4:00<BR> SLA VS EPIPHANY AT WELLFIELD, VENICE<BR> <BR> <B>FEB-24</B><BR> Casual Day<BR> (for those who qualify)<BR> <BR> <B>FEB-25</B> - SLA Garage Sale<BR> 7am - 1-pm<BR> <BR> <B>FEB-28</B> - FCAT Writing Test<BR> - 4:00pm<BR> SLA VS SKY ACADEMY AT GARBRANDT SOCCER COMPLEX, VENICE<BR> <BR> <B>MAR 1</B> - 4:00<BR> SLA VS ST. CHARLES AT ST. CHARLES CATHOLIC SCHOOL IN PORT CHARLOTTE<BR> <BR> <B>MAR 6</B> - 4:00<BR> SLA VS. IMAGINE PALMER RANCH AT WELLFIELD, VENICE<BR> <BR> <B>MAR 8</B> - 3:30<BR> SLA VS INCARNACION AT 17TH STREET SOCCER FIELDS IN SARASOTA<BR> <BR> <B>MAR-12 thru MAR-16</B><BR> Spring Break<BR> <BR> <B>March 23</B><BR> Casual Day<BR> (for those who qualify)<BR> <BR> <B>March 29</B><BR> Spring Dance<BR> <BR> <B>March 30</B><BR> Professional Day<BR> No School<BR> <BR> <B>April 6</B><BR> Mini-break<BR> No School<BR> <BR> <B>April 13</B><BR> Family Fun Night<BR> 5:30pm - 8pm<BR> @GUMC<BR> <BR> <B>April 27</B><BR> Casual Day<BR> (for those who qualify)<BR> <BR> <B>April 28</B><BR> 8th grade leave for D.C.<BR> return May 3<BR> <BR> <B>May 4</B><BR> Relay For Life<BR> <BR> <B>May 7</B> - NJHS Induction Ceremony<BR> 7pm at First Baptist Church<BR> Venice, FL<BR> <BR> <B>May 28</B> - Memorial Day<BR> No School<BR><BR></font></p>');
}

var speed=13; // 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;

