$(document).ready(function(){
	$('#faq_scroll_wrap').jScrollPane({showArrows: false, scrollbarWidth: 0, animateTo: true, animateInterval: 30, animateStep: 5, maintainPosition: true, dragMinHeight: 20});
	$('#faq_scroll_up, #faq_scroll_down').bind('click', function() {
			$('#faq_scroll_wrap')[0].scrollBy(parseInt($(this).attr('rel')));
			return false;
		}
	);
});


