// JavaScript Document
var $aboutright = $('.aboutright');
function scrollPane() {
	$('#aboutright').jScrollPaneRemove();
	$('#aboutright').jScrollPane({showArrows:true});
}
$(document).ready(function() {scrollPane();});
$(window).resize(function(){scrollPane();});