$(document).ready(function() {
	$('a[rel*=external]').each(function() {
		this.title += ' in a new browser window';
	});
	$('a[rel*=external]').click(function() {
		this.target = '_blank';
	});
	
	var scrollPaneSettings = {
		showArrows: true,
		arrowSize: 9,
		reinitialiseOnImageLoad: true
	};
	$('#accordion').accordion({
		active: false,
		animated: false,
		autoHeight: false,
		collapsible: true
	});
	$('.ui-accordion').bind('accordionchange', function(event, ui) {
		$('#scrollpane').jScrollPane(scrollPaneSettings);
	});
	$('#scrollpane').jScrollPane(scrollPaneSettings);
});