function makeScrollbar(content2,scrollbar2,handle2, horizontal,ignoreMouse){



	new Slider(scrollbar2,handle2,   {



	steps: content2.getSize().scrollSize.x - content2.getSize().size.x,

	mode: 'horizontal',

				onChange: function(step){

					// Scrolls the content element in x direction.

						var x = (horizontal?step:0);

						content2.scrollTo(x);

				}

	 }).set(0);



}