$().ready(function() {

	reinitialiseScrollPane2 = function()
				{
					$('#pane2').jScrollPane({showArrows:true,scrollbarWidth:15});
				}

	reinitialiseScrollPane3 = function()
				{
					$('#pane3').jScrollPane({showArrows:true,scrollbarWidth:15});
				}

	$('#pane2').load('ajax/getrss.php', '', reinitialiseScrollPane2);
	$('#pane3').load('ajax/getnews.php', '', reinitialiseScrollPane3);

});