/*************************************************************************
  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 initScrollLayer() {
  // arguments: id of layer containing scrolling layers (clipped layer), id of layer to scroll, 
  // if horizontal scrolling, id of element containing scrolling content (table?)
  var wndo = new dw_scrollObj('wn', 'lyr1');
  
  
  // pass id('s) of scroll area(s) if inside table(s)
  // i.e., if you have 3 (with id's wn1, wn2, wn3): dw_scrollObj.GeckoTableBugFix('wn1', 'wn2', 'wn3');
  dw_scrollObj.GeckoTableBugFix('wn'); 
}

var tijd=3000
for (var x = 1; x <= 100; x++)
   {
var t1=setTimeout("dw_scrollObj.initScroll('wn','right')",tijd)
var tijd = tijd+24000
var t1=setTimeout("dw_scrollObj.stopScroll('wn')",tijd)
var tijd = tijd+1000
var t1=setTimeout("dw_scrollObj.scrollBy('wn',1000000,0)",tijd)
var tijd = tijd+2000
}
