var scrollTimeout=null;
function initJsScroll(w, h) {
	window.clearInterval(scrollTimeout);
	if(document.documentElement.offsetWidth==0) 
		scrollTimeout=window.setInterval(initJsScroll,10);
	else {
		scroller = new jsScroller(document.getElementById('Scroller-1'), w, h);
		scrollbar = new jsScrollbar (document.getElementById('Scrollbar-Container'), scroller, true);
	}
}