﻿		$(function()
		{
			var $pane = $('#pane');
			$pane.height ( $(document).height() - $("#pane_top").height() - $("#pane_bottom").height()-237);
			$pane.jScrollPane({showArrows:true, scrollbarWidth:19, dragMaxHeight: 12, reinitialiseOnImageLoad: true,animateTo:true});
			$('#navigation-links a').bind('click', function()	{
				var targetElementSelectorString = $(this).attr('href');
				$pane[0].scrollTo(targetElementSelectorString);
				$('html, body').animate({scrollTop:0}, 'slow'); 
				return false;
			});
		});
