// JavaScript Document
function init_dw_Scroll2() {
    // arguments: id of div container, id of div to scroll
    var wndo = new dw_scrollObj('wn1', 'lyr2');
    wndo.setUpScrollControls('scroll_links');
}

// if code supported, link in the style sheet and call the init function onload
if ( dw_scrollObj.isSupported() ) {
    //dw_writeStyleSheet('css/scroll.css');
    dw_Event.add( window, 'load', init_dw_Scroll2);
}


