﻿$(document).ready(function () {
	// initialise scroll panes
	$('.scrollBox').jScrollPane({ showArrows: true, verticalDragMinHeight: 68, verticalDragMaxHeight: 68 });

	// add extra divs to scrollpane vertical bar for arrows
	$('.jspContainer .jspVerticalBar').each(function () {
		var $topBg = $('<div class="topBg" />');
		var $bottomBg = $('<div class="bottomBg" />');
		$(this).prepend($topBg);
		$(this).append($bottomBg);
	});

	// make external links and pdfs open in new window
	$('a').externalLinks();
});

