
/*************************************************************************
  This code is from Dynamic Web Coding at www.dyn-web.com
  Copyright 2001-5 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 scr1 = new dw_scroller('cnt1', 700, 17, 5, "v", true);
    scr1.setTiming(100, 8000);
	//scr1.setTiming(100, 6000);
    
    dw_scrollers.GeckoTableFix('wn1'); // needed for scrollers in tables
}

window.onload=initScroller;


