$(document).ready(function() {
	$('#uparrow').click(function(){
		$('#scrollpane')[0].scrollBy(-280);
	});
	
	$('#downarrow').click(function(){
		$('#scrollpane')[0].scrollBy(280);
	});
	
	$('#scrollpane').jScrollPane({scrollbarWidth: 10, scrollbarMargin: 10, animateTo: true, reinitialiseOnImageLoad: true});

});