function addScrollers() {
// code each scroller as follows:
// startScroll('id of scroller div','content of scroller');
startScroll('myscroller','<p style="padding-left:45px;">Chapter 224 Elgin</p><p>&nbsp;&nbsp;&nbsp;<img src="logo1.jpg" alt="" width="180" height="105" /></p><p style="padding-left:50px;">Members &quot;Rides&quot;</p><p><img src="DSC0570.jpg" alt="" width="200" height="142" /></p><p><img src="DSC0580.jpg" alt="" width="200" height="125" /></p><p><img src="DSC01494.jpg" alt="" width="200" height="184" /></p><p><img src="DSC0560.jpg" alt="" width="200" height="143" /></p><p><img src="sfield.jpg" alt="" width="200" height="171" /></p><p><img src="DSC02314.jpg" alt="" width="200" height="150" /></p><p><img src="twobikes.jpg" alt="Web Site Author" width="200" height="126" /></p><p><img src="DSC01493.jpg" alt="" width="200" height="145" /></p><p><img src="Riddick.jpg" alt="" width="200" height="150" /></p><p><img src="DSC01495.jpg" alt="" width="200" height="154" /></p><p><img src="DSC01498.jpg" alt="" width="200" height="138" /></p><p><img src="DSC01492.jpg" alt="" width="200" height="133" /></p><p><img src="DSC01500.jpg" alt="" width="200" height="140" /></p><p><img src="DSC01504.jpg" alt="" width="200" height="138" /></p><p><img src="DSC01507.jpg" alt="" width="200" height="150" /></p><p><img src="DSC01511.jpg" alt="" width="200" height="118" /></p><p><img src="DSC01515.jpg" alt="" width="200" height="140" /></p><p><img src="DSC01533.jpg" alt="" width="200" height="118" /></p><p><img src="DSC01549.jpg" alt="" width="200" height="122" /></p><p><img src="DSC01566.jpg" alt="" width="200" height="160" /></p><p><img src="DSC01502.jpg" alt="" width="200" height="137" /></p><p>. . . . . . . End of the Ride!</p>');
startScroll('twoscroll','<p>Yet another scroller!</p>');
}

var speed=15; // 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;
                  