// JavaScript Document

			
			$(function()
			{
                
                // this initialises the scrollBy and scrollTo links.
                $('.scroll-to-demo').bind(
                    'click',
                    function()
                    {
                        $('#pane1')[0].scrollTo(200);
                        return false;
                    }
                );
                
				// Set up #pane4 and the links which scrollTo elements within it
				
                var $pane4 = $('#pane4');
				$pane4.jScrollPane({animateTo:true});
				$('a.scroll-to-element-demo').bind(
					'click',
					function()
					{
						var targetElementSelectorString = $(this).attr('rel');
						$pane4[0].scrollTo(targetElementSelectorString);
						return false;
					}
				);
                
			});

