function addScrollers() {
// code each scroller as follows:
// startScroll('id of scroller div','content of scroller');
startScroll('myscroller',' &bull; <a href="dpt/emergencymanagement/burnregulations.html">Open Burn Regulation</a> <br /> <br /> &bull; <a href="dpt/publichealth/h1n1pressrelease.html">H1N1 Immediate Press Release</a> <br /> <br /> &bull; <a href="dpt/planning/PlanningNewsletterVol79.pdf">Planning Department Winter 2010 Newsletter</a> <br /> <br />  &bull; <a href="dpt/publichealth/2010H1N1POD.pdf">2010 Thursdays Flu Clinics</a>  <br /> <br /> &bull; <a href="dpt/centralservices/bids.html">Bid# 2010-05 &amp; Bid# 2010-08</a> are now posted  <br /> <br /> &bull; Posted Weekly, <a href="dpt/animalshelter/postforpaws.pdf">Post for Paws</a> - Animals up for adoption<br /> <br /> &bull; <a href="dpt/planning/compplan.html">County Comprehensive Plan</a><br /> <br />  &bull; New <a href="http://www.readygenesee.com">READYgenesee Website</a> Posted  <br /><br />&bull; New <a href="dpt/personnel/exam.html">Open Competitive Exams</a> Posted<br /><br /> &bull; Check out the <a href="dpt/personnel/openpositions.html">Current Open Positions</a><br /><br />');
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;
                  