// Adapted from http://bassistance.de/jquery-plugins/jquery-plugin-accordion/

jQuery().ready(function(){
	jQuery('#accordion').accordion({
		active: '.selected',
		header: '.head',
		hover: 'highlight',
		opened: 'opened',
		closed: 'closed',
		navigation: true,
		autoheight: false,
		animated: 'easeslide'
	});
});

