// JavaScript Document

// SCROLLBAR  Vertikal //

function init_dw_Scroll() {
	
	var wndo = new dw_scrollObj('wn', 'lyr1' );
	wndo.setUpScrollbar("dragBar", "track", "v", 0, 0);
	wndo.setUpScrollControls('scrollbar');
}

// if necessary objects exists link in the style sheet and call the init function onload
if ( dw_scrollObj.isSupported() ) {
    //dw_writeStyleSheet('css/scrollbar_demo.css')
    dw_Event.add( window, 'load', init_dw_Scroll);
}
