function loadScrollBar() 
{
		
	var cntID = 1;
	var tScroll = document.getElementById("thumbScroll");
	var aThumb = document.getElementById("thumb");
	var scrolldiv=document.getElementById("scrollcontent");
	var scrollArea=document.getElementById("scrollArea");
	
	if (scrolldiv.offsetHeight > scrollArea.offsetHeight) {
		tScroll.style.visibility='visible';
		$('DOWN_ARROW').style.visibility='visible';
		$('scrollcontent').innerHTML = $('scrollcontent').innerHTML + '<p>&nbsp;</p>';
	} else {
		$('DOWN_ARROW').style.visibility='hidden';
		tScroll.style.visibility='hidden';
	}
	
	var tmp = scrollArea.offsetHeight - aThumb.offsetHeight;

	var scrollSpeed = (scrolldiv.offsetHeight - scrollArea.offsetHeight) / (scrollArea.offsetHeight - aThumb.offsetHeight);
	scrollSpeed = (Math.round(scrollSpeed*10)/10);

	Drag.init(aThumb, null, 0, 0, 0, (scrollArea.offsetHeight - aThumb.offsetHeight));
	aThumb.onDrag = function(x, y) {
		scrolldiv.style.top=y * ((scrollSpeed) * -1) +"px";
	}
}