function carrega(pagina){
//alert(pagina);
$('#pane1').jScrollPane();
$('#pane1').empty();
$('#pane1').load(pagina, '', reinitialiseScrollPane);
				
}

	
				
		$(function()
			{
			
				// this initialises the demo scollpanes on the page.
				$('#pane1').jScrollPane({showArrows:true});

				reinitialiseScrollPane = function()
				{
					$('#pane1').jScrollPane({showArrows:true});
				}

					
								
				
				// and this allows you to click the link to reduce the amount of content in
				// #pane1 and reinitialise the scrollbars.
				$('#remove-content').bind(
					'click',
					function()
					{
						$('#pane1').empty().append($('<p>Nothing to see here</p>')).jScrollPane({scrollbarWidth:20, scrollbarMargin:10});
					}
				);
			});
			