$(document).ready(function () {
	$('#details_accordion h3').each(function () {
		$(this).wrapInner('<a href="#" title="'+$(this).text()+'"></a>');
	});
	
	var accordion_details = {header: 'h3', autoHeight: false, active: false};

	if (location.hash)
	{
		if ($('#details_accordion h3'+location.hash).text())
		{
			accordion_details.active = $('#details_accordion h3').index($('h3'+location.hash));
		}
	}

	$('#details_accordion').accordion(accordion_details);
});