jQuery(function()
			{
				// this initialises the demo scollpanes on the page.
				jQuery('#pane1').jScrollPane();
				
                
				// this allows you to click a link to add content to #pane4 and shows how to 
				// reinitialise the scrollbars when you have done this.
				jQuery('#add-content').bind(
					'click',
					function()
					{
						jQuery('#pane4').append(jQuery('<p></p>').html(jQuery('#intro').html())).jScrollPane({scrollbarWidth:20, scrollbarMargin:10});
					}
				);
				// and this allows you to click the link to reduce the amount of content in
				// #pane4 and reinitialise the scrollbars.
				jQuery('#remove-content').bind(
					'click',
					function()
					{
						jQuery('#pane4').empty().append(jQuery('<p></p>').html(jQuery('#intro').html())).jScrollPane({scrollbarWidth:20, scrollbarMargin:10});
					}
				);
			});