			$(function()
			{
				$('#pane1').jScrollPane({showArrows:true});
                $('.scroll-by-demo').bind(
                    'click',
                    function()
                    {
                        $('#pane1')[0].scrollBy(parseInt($(this).attr('rel')));
                        return false;
                    }
                );
			});