// function to initialise all scrollPanes on the page and
// scroll to an item with a class of 'highlight'
jQuery(function($)
{
	var scrollPane = $('.scroll-pane');
	// initialise scroll panes
	scrollPane.jScrollPane({scrollbarWidth:4, animateTo:true});
	// scroll-to highlighted items
	if (scrollPane.length > 0 && scrollPane[0].scrollTo)
	    scrollPane[0].scrollTo('.highlight');
});		