function init_dw_Scroll() {
    // arguments: id of div container, id of div to scroll
    var wndo = new dw_scrollObj('wn', 'lyr1');
    wndo.setUpScrollControls('scroll_links');
}

// if necessary objects exists link in the style sheet and call the init function onload
if ( document.getElementById && document.getElementsByTagName ) {
    //dw_writeStyleSheet('scroll.css');
    addLoadEvent(init_dw_Scroll);
}
