/* Initalizes any scrollable panes with class .scroll-pane. This is included in the jscrollpane.php pack */

$(function () {
	initJScrollPane();
	});
	
function initJScrollPane() {
	$('.scroll-pane').jScrollPane({scrollbarWidth:15, scrollbarMargin:10});	
	}	
	
	/* Initalizes any scrollable panes with class .scroll-pane. This is included in the jscrollpane.php pack */


