// SET SCROLLER APPEARANCE AND MESSAGES
var myScroller1 = new Scroller(0, 0, 350, 20, 0, 0); //(xpos, ypos, width, height, border, padding)
myScroller1.setColors("#336699", "none", "none"); //(fgcolor, bgcolor, bdcolor)
myScroller1.setFont("Arial,Helvetica,sans", 2);
//
// DO NOT EDIT ABOVE THIS LINE --------------------------


myScroller1.addItem("<b>NEWS:</b> <a href='news.html'>BIG SHOTS Awards Ceremony and Reception");
myScroller1.addItem("<b>NEWS:</b> <a href='news.html'>BBBSC and Mile High United Way");
myScroller1.addItem("<b>NEWS:</b> <a href='news.html'>Local Match Meets President"); 
myScroller1.addItem("<b>NEWS:</b> <a href='news.html'>2009 Accomplishments");



// DO NOT EDIT BELOW THIS LINE --------------------------
//
// SET SCROLLER PAUSE
myScroller1.setPause(2500); //set pause beteen msgs, in milliseconds
function runscroll() {
  var layer;
  var scrollx, scrolly;
// Locate placeholder layer so we can use it to position the scrollers.
  layer = getLayer("placeholder");
  scrollx = getPageLeft(layer);
  scrolly = getPageTop(layer);
// Create the first scroller and position it.
  myScroller1.create();
  myScroller1.hide();
  myScroller1.moveTo(scrollx, scrolly);
  myScroller1.setzIndex(100);
  myScroller1.show();
}