function addScrollers() {
// code each scroller as follows:
// startScroll('id of scroller div','content of scroller');
startScroll('myscroller',
'<table width=170><tr><td><p class=scroll>&quot;My son and I have done the first 3 of these and have already established the Tradition. I took my shirt from the first race and sealed it - I hope to be still active by the 25th running and will break the original T-shirt out for that one!&quot;<br><strong>--Joe Mc Andrews</strong><br></p><p class=scroll>Favorite Memory: &quot;Meeting hundreds of other people nutty enough to get up early on Thanksgiving to run in the cool crisp ocean air.&quot;<br><strong>--Gary Tieche, Los Angeles CA</strong><br></p><p class=scroll>&quot;My birthday is Thanksgiving!&quot;<br><strong>--Diane Scholfield, Oceanside CA</strong><br></p><p class=scroll>&quot;I&#39;m running in memory of Alex Scher&quot;<br /><strong>--Michael Riley, Portland OR<br /></strong></p><p class=scroll>Favorite Memory: &quot;Not feeling guilty about all the food I ate on  Thanksgiving day since I had ran the Turkey Trot 5K that morning!&quot;<br /><strong>--Rebecca Bland, Oceanside CA<br /></strong></p><p class=scroll>&quot;Our women&#39;s walking group called &#39;The Shameless Shamrocks&#39; are all excited about participating this year for the first time.&quot;<br /><strong>--Pat Walsh, Oceanside CA<br /></strong></p><p class=scroll>&quot;My husband and I have decided to start making the Oceanside Turkey  Trot a new tradition. &nbsp;We are looking for ways to get active, stay in  shape and spend more time together. What better way than to train for a  race on a family centered holiday?&quot;<br /><strong>--Vanessa Olson, Oceanside CA<br /></strong></p><p class=scroll>&quot;My mother, cousins, and multiple aunts participated last year. &nbsp;Since  the event falls on my birthday this year, I thought it would be great  to get my friends and family out to celebrate.&quot;<br /><strong>--Dolores Gascon, Oceanside CA<br /></strong></p><p class=scroll>&quot;Turkey Trot 2006 was my first of 7 5Ks last year, which helped me lose 40 unwanted pounds. I will be 65 at Turkey Trot 2007 and feel younger than ever thanks to the encouragement and coaching of my dear friends Barbara and Joe Ajello!&quot;<br /><strong>--Christine Assad, Fallbrook, CA</strong></p><p class=scroll>&quot;My  son Micah, then four, had his name called as he crossed the finish  line. He&#39;s positive he won (even though they announced many children).  His ribbon is still one of his prized possessions.&quot;<br /><strong>--Jessica &amp; Micah Hacker, Carlsbad, CA</strong></p><p class=scroll>&quot;My whole family spends Thanksgiving in Carlsbad every year. My mom, Nana, and my Aunt Laura all ran the 5k last year and are running the 5k this year. I am excited because this is my 1st race.&quot;<br /><strong>-- Madisyn Taylor, Redlands, CA</strong></p></td></tr></table>');
}

var speed=8; // 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;
                  
