$(document).ready(function() {
	$('.expandable h2 a').each(function() {
		$(this).attr('href', '#' + $(this).attr('name'));
		$(this).click(function() {
			toggleSection($(this).attr('name'));
			return false;
		});
		$(this).parent().parent().children().not('h2').wrapAll('<div class="expandable_contents"></div>');
	});
	$('.expandable_contents').hide();
});

function toggleSection(name) {
	$('.expandable h2 a[name="' + name + '"]').parent().parent().children('.expandable_contents').slideToggle();
}
