$(function() {
	$('#pane2').jScrollPane({showArrows:true, animateTo:true});
	var $targets = $('#pane2-scroll-targets'); // menu
	var $pane2 = $('#pane2'); // scroll contenu
	var pane2top = parseInt($pane2.offset().top);
	$('#pane2 h2').each(
		function(index) {
			$targets.append($('<li>')
				.append($('<a>')
				.attr({'href':'javascript:;', 'rel':$(this).offset().top})
				.text($(this).text()) // instead of .html() !! for special characters ...
				.bind('click', function() {
					$pane2[0].scrollTo(parseInt($(this).attr('rel')) - pane2top);
				})
				)
			);
		}
	);
	$('#pane23').jScrollPane({showArrows:true, animateTo:true});
});
