﻿ $(function() {



    $('#pane1').jScrollPane({ showArrows: true, scrollbarWidth: 0, animateTo: true });

    if ($('#pane1').height() > 430) { $("#scroller").show() }
    $('.scroll').bind(
                    'click',
                    function() {
                        $('#pane1')[0].scrollBy(parseInt($(this).attr('rel')));
                        return false;
                    }
                );
});
		