	jQuery().ready(function(){
		// highly customized accordion
		jQuery('#accordion').accordion({
			active: '.selected',
			selectedClass: 'active',
			animated: "bounceslide",
			autoheight: "true",
			alwaysOpen: "true", 
			header: "dt"
		}).bind("change.ui-accordion", function(event, ui) {
			jQuery('<div>' + ui.oldHeader.text() + ' hidden, ' + ui.newHeader.text() + ' shown</div>').appendTo('#log');
		});

	});


