$(function()
			{
// this initialises the demo scollpanes on the page.
				$('#pane1').jScrollPane();
				$('#remove-content').bind(
					'click',
					function()
					{
						$('#pane1').empty().append($('<p></p>').html($('#intro').html())).jScrollPane({scrollbarWidth:10, scrollbarMargin:10});
					}
				);
			});

$(function()
			{
// this initialises the demo scollpanes on the page.
				$('#pane12').jScrollPane();
				$('#remove-content').bind(
					'click',
					function()
					{
						$('#pane12').empty().append($('<p></p>').html($('#intro').html())).jScrollPane({scrollbarWidth:10, scrollbarMargin:10});
					}
				);
			});
