// ******* JS for jadore jscrollpane customiz******
// ************************************************
    $(document).ready(function(){
		$('.scroll_pane').jScrollPane({
			scrollbarWidth: 14,	//The width of the generated scrollbar in pixels
//			scrollbarMargin:	//The amount of space to leave on the side of the scrollbar in pixels
//			wheelSpeed:	//The speed the pane will scroll in response to the mouse wheel in pixels
			showArrows:true,	//Whether to display arrows for the user to scroll with
			arrowSize: 15,	//The height of the arrow buttons if showArrows=true
//			animateTo:	//Whether to animate when calling scrollTo and scrollBy
//			dragMinHeight:	//The minimum height to allow the drag bar to be
//			dragMaxHeight:	//The maximum height to allow the drag bar to be
//			animateInterval:	//The interval in milliseconds to update an animating scrollPane (default 100)
//			animateStep:	//The amount to divide the remaining scroll distance by when animating (default 3)
//			maintainPosition:	//Whether you want the contents of the scroll pane to maintain it's position when you re-initialise it - so it doesn't scroll as you add more content (default true)
//			tabIndex:	//The tabindex for this jScrollPane to control when it is tabbed to when navigating via keyboard (default 0)
//			enableKeyboardNavigation: - //Whether to allow keyboard scrolling of this jScrollPane when it is focused (default true)
//			animateToInternalLinks: //Whether the move to an internal link (e.g. when it's focused by tabbing or by a hash change in the URL) should be animated or instant (default false)
//			scrollbarOnLeft:	//Display the scrollbar on the left side?  (needs stylesheet changes, see examples.html)
//			reinitialiseOnImageLoad: //Whether the jScrollPane should automatically re-initialise itself when any contained images are loaded (default false)
			topCapHeight:0,	//The height of the "cap" area between the top of the jScrollPane and the top of the track/ buttons
			bottomCapHeight:0	//The height of the "cap" area between the bottom of the jScrollPane and the bottom of the track/ buttons
//			observeHash:	//Whether jScrollPane should attempt to automagically scroll to the correct place when an anchor inside the scrollpane is linked to (default true) 
		});									  
	});

