
    /**********************************************************
      This code is from Dynamic Web Coding at www.dyn-web.com
      Copyright 2001-4 by Sharon Paine
      See Terms of Use at www.dyn-web.com/bus/terms.html
      regarding conditions under which you may use this code.
      This notice must be retained in the code as is!
    **********************************************************/
    function initScroller() {
      // arguments: id of layer that scrolls, width and height of scroller (of wn),
      // number of items (including repeated 1st item), axis ("v" or "h")
      // set up pause/resume onmouseover/out? (true or false)
      var items = 3;
      if (items > 1) {
        var scr1 = new dw_scroller('upcomingContent', 50, 60, items+1, "v", false);
        scr1.setTiming(100, 7000);
      }
    }
