function initScrollers() {
  // 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 scr = new dw_scroller('cnt', 100, 100, 16, "h", true);
  // adjust timing (defaults are set at 60, 5000)
  scr.setTiming(60, 0);  // speed, pause duration
}

function underline() {
	this.style.textDecoration='underline';
}


